I have a gridview that is only shown in a modal popup. right before I call the modal popup I set a value in a textbox. The gridview inside the modal popup depends on that textbox’s value for it’s data to show up at all. SO onclick I want to reload the gridview so that it will reload with the textbox’s value. Any ideas?
Share
Essentially… Using update panel, the button press event should trigger the partial postback where your query is rerun that would then allow you to do another databind on your grid. THis would all be followed by a modalPopUp.Show()…
CODE BEHIND
FRONT END