I have a gridview inside an updatepanel and I have a javascript that calls a page method using jquery. I\'d like the page method to refresh the gridview based on the parameter i
ok so the solution is to use _doPostBack in javascript:
__doPostBack('MyPanel', DateString);
The page method is for sending and receiving data only, not for doing postbacks on updatepanels.