Datagrid formating incorrect after editing
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
In the grid ItemDataBound event I am doing some formating of datagrid cells.
Case ListItemType.AlternatingItem, ListItemType.Item Dim tCell As TableCell = e.Item.Cells(4) Dim sOrderBy As String = tCell.Text Select Case sOrderBy Case "-1" tCell.Text = String.Empty
This works fine. But if I edit an item the edited items cells are not formated. What is happening and how can I resolve this. Thanks. Jim