Click here to Skip to main content
15,867,594 members

Comments by Kong Lee 2022 (Top 3 by date)

Kong Lee 2022 10-Jul-22 9:07am View    
for example, if I sort Z - A I want to be able to select any row and still retain row selected on the gridview. I tried using:
protected void GridViewSys_SelectedIndexChanging(object sender, GridViewSelectEventArgs e)
{
GridViewRow row = GridViewSys.Rows[e.NewSelectedIndex];
}
but does not work. Also tried using:
GridViewSys.SelectedIndex = e.NewSelectedIndex;
Kong Lee 2022 10-Jul-22 2:57am View    
Yes I've tried it and it does nothing for me.
Kong Lee 2022 4-Jul-22 14:13pm View    
I want to be able to insert sysName, venName, sysDesc with out having to enter in sys_venID or displaying it. If that makes any sense.