vote up 1 vote down star
1

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.

flag

2 Answers

vote up 0 vote down check

Here's an example using the LinkButton's OnClientClick property:

protected void lnkConfirm_Click(object sender, EventArgs e)
{
   Response.Write("Postback!");
}

<asp:LinkButton ID="lnkConfirm" runat="server" 
    OnClientClick="return confirm('Do Postback?');"
    OnClick="lnkConfirm_Click">Postback</asp:LinkButton>
link|flag
Thanks Chris. Problem solved. – sagar Jun 25 at 6:08
vote up 3 vote down

I assume you're doing something like this in Javascript to open the popup:

<input type="submit" onclick="window.open('...');" ... />

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:

<input type="submit" onclick="window.open('...'); return false;" ... />
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.