Im trying to sort a datagrid that use a dataview as datasource.
I get to view the data in the dataview, but when i set the
dataview's sort property and re-databind the datagrid, the datagrid comes out empty.
I even tried to use a custom button to sort instead of the regular header links.
The code is very simple it is
DataView1.Sort = e.SortExpression
DataGrid1.DataBind()
-Glenn