Hi Parth.
To start, place the gridview in an update panel. When the modalpopup appears, there is a textbox and two buttons - one for ok and one for cancel. When the user types whatever in the textbox and clicks ok, in code behind, you will want to update the gridview (if the data for the gridview is being populated from a database, update the gridview and then bind it again so that it refreshes.) In order for the button to work, you have to use this code
btnok.onClientClick = string.format("postback({'0}', '{1}')", btnok.UniqueId, "")
in javascript do:
function postback(sender, e){
__doPostBack(sender, e);
}
You must also set the CausesValidation property of the button to False. With all that set, you can then access the code behind for the button and have it asyn update the gridview.
Hope that helps! 