How can I reload the gridview onclientclick of another gridview button?

I have a modal popup that contains a gridview. On clicking a button inside the grid, I reload the gridview with data that depends on the id of the row clicked in the gridview. I would like to reload the gridview onclientclick, but I couldn't find a way to do it. Is it possible to reload the client side of a gridview without a user, even knowing that the page is partially loaded?

0


a source to share


2 answers


Check out what Matt Berset does with gridview / detailsview, it might help you.



http://mattberseth.com/blog/2008/04/masterdetail_with_the_gridview.html

+1


a source


Why don't you wrap the GridView and Button in updatePanel inside ModalPopup.



This way yours _click

still starts and still refreshes the gridview, but you won't experience full page post / post.

0


a source







All Articles