Hi Corey Fleig,
To ensure the GridView displays correctly after closing the ModalPopupExtender, please make sure that the GridView is rebound and made visible during the same server-side postback that hides the modal. Avoid placing the data-binding logic inside a Not Page.IsPostBack block, as this can prevent it from executing during postbacks.
Additionally, confirm that both the modal and the GridView are placed within the same
asp:UpdatePanel (or within properly coordinated update panels) to ensure that AJAX partial updates function as expected.
If you're using client-side JavaScript (mpe.hide()) to close the modal, be sure that a postback is triggered afterward so the GridView can refresh appropriately.
If the issue continues, we recommend sharing more detailed information along with your relevant code snippets. This will help us better understand your implementation and provide a more accurate and effective solution.
If you have found the answer provided to be helpful, please click on the "Accept answer/Upvote" button so that it is useful for other members in the Microsoft Q&A community.