how to know when mouse is clicked on gridview's column header.
C#
2
Posts
2
Posters
0
Views
1
Watching
-
how to perform an action against the mouse click on the header of the c#asp.net gridview's column.
U can get that in Javascript This code needs to be registered on page load. TableObject.rows[0].onclick = Function("return YourFunctionName(this);"); Here TableObject is ur gridview object rows[0] gives the first row that is the header row. Then write ur logic in "YourFunctionName" Regards Santhosh N