onrowclick of gridview
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
-
Hi guys I have a gridview which uses onrowclick. When a row is clicked an event is fired. Is there a way to disable the row click on one of the columns? thanks
The answers posted by me are suggestions only and cannot be used in anyway against me.
hi, For disabling row click on one of the columns ,you can give an if condition on onrowclick event as below If (e.ColumnIndex = 0) then else End if In the else case you can write the code for that event. Hope this will help you