J
John Wilmot
I am using the following to highlight a row when mousing over a GridView:
e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='Silver'");
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='White'");
Now, what I would like to do would seem simple, but apparently is not. I
would like to be able to select the row by clicking on any column within it.
Does anyone know the best way to do this?
e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='Silver'");
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='White'");
Now, what I would like to do would seem simple, but apparently is not. I
would like to be able to select the row by clicking on any column within it.
Does anyone know the best way to do this?