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
Take a look at my answer to this related question here. In short, you create a new instance of the grid and capture its output manually.
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.