1
1001001001
Hi,
I am sorting a data grid column using the following code:
DataView vw = (DataView)this.DataSource;
string sort = vw.Table.Columns[col].ColumnName + " ASC";
It works fine but i would like to make it case insensitive so cap "A" and
lower "a" appear grouped together.
Any ideas how to do this?
Thanks
I am sorting a data grid column using the following code:
DataView vw = (DataView)this.DataSource;
string sort = vw.Table.Columns[col].ColumnName + " ASC";
It works fine but i would like to make it case insensitive so cap "A" and
lower "a" appear grouped together.
Any ideas how to do this?
Thanks