Posted on: 7/3/2013 10:07:31 AM | Views : 419

Hi, I am using a Datagrid where I need to delete a value from few cells after "*" i am using a split funtion to split after "*".... the code below works fine to split the value but i can only split datas in the first page when i go to second page the values remains unchanged,
can any one suggest to remove in all the pages?? Thanks in advance! Code i am using in itemDataBound: (datagrid don't have row bound property)  If e.Item.ItemType = DataControlRowType.DataRow Then             Dim str As String() = e.Item.Cells(3).Text.Split("*")             e.Item.Cells(3).Text = str.First()         End If
...

Go to the complete details ...