| Author: Deepika Haridas 21 Nov 2008 | Member Level: Diamond | Rating:  Points: 5 |
protected void GridView_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { e.Row.Attributes["onmouseover"] = "this.style.cursor='hand';this.style.textDecoration='underline';"; e.Row.Attributes["onmouseout"] = "this.style.textDecoration='none';";
e.Row.Attributes["onclick"] = ClientScript.GetPostBackClientHyperlink(this.GridView, "Select$" + e.Row.RowIndex); }
Thanks & Regards, Deepika Editor
If U want to shine like a SUN..First U have to burn like the SUN!! Need a Guide? Join my mentor program..
|
| Author: sankar 21 Nov 2008 | Member Level: Silver | Rating:  Points: 2 |
within selectedindexchanged event Bind Once again gv.datasource=dt.defalutview(); gv.dataBind()
|
| Author: Arjunvino 21 Nov 2008 | Member Level: Silver | Rating:  Points: 0 |
hey u can try for GridView_focusedRowChanged
|
| Author: savithri 22 Nov 2008 | Member Level: Silver | Rating:  Points: 1 |
I tried all these but still it going for second time only on execution..
|