I want to show a popup on click of a button. I am able to achieve it but I was not able to stop autopostback. The pop-up is displayed and page gets posted back automatically. Need help. TIA.
|
feedback
|
|
Here's an example using the LinkButton's OnClientClick property:
| |||
feedback
|
|
I assume you're doing something like this in Javascript to open the popup:
All you need to do is add "return false;" to the end of your Javascript call to prevent the postback from occurring, leaving you with something like:
| |||
|
feedback
|