Is it possible to refresh a parent page after you close a ModalPopupExtender using only C#? I don't know Javascript much and I'm confused by the Javascript answers I've seen online, and can't find anything that uses just C# to do this.
Asked
Active
Viewed 38 times
1 Answers
0
I know this might be a little strange, but have you considered this approach?
In your case, you would detect if the panel's client id's visible property has changed.
When the popup is closed, the property of the panel should change to hidden.
you use a mutation observer.

Ctznkane525
- 7,297
- 3
- 16
- 40
-
i had to change it to use a mutation observer, but the idea is the same – Ctznkane525 Jan 06 '18 at 16:01