Is it possible to handle a gridview's OnPageChanging event with JQuery?
+1
A:
OnPageChanging is a server-side event, and JQuery is a client-side library.
J.W.
2009-06-09 16:34:52
I understand it is a server control. But you can handle the OnClick of a asp button. I was just wondering if you could do something similar with a GridView paging event. Thanks. $('[id$=btnTest]').click(function(evt) { evt.preventDefault(); });
2009-06-09 16:43:34