[Resolved] GridView - Selected Row and Background Color
I have a GridView and when I select a row, I set the back ground color = red for selected row (GridView1.SelectedRow.BackColor). When user clicks and sorts a column I need to reset/disable the Selected.Row background color (it stay as red). Since I am using alternating row colors I do not know what the original color was.
Re: GridView - Selected Row and Background Color
would you be intersted in setting GridView.SelectedIndex = -1 in GridView's Sort ebent handler?
Re: GridView - Selected Row and Background Color
Thank worked perfectly! Thank you so much.
Re: [Resolved] GridView - Selected Row and Background Color