vote up 0 vote down star

I want to inject a confirmation dialog to allow the user to cancel the click before the postback occurs.

What's the cleanest way?

<asp:LinkButton ID="Btn_RemoveContractPeriod" Text="Remove" 
runat="server" OnClick="OnRemoveContractPeriod_Click"/>
flag

1 Answer

vote up 1 vote down
<asp:LinkButton ID="Btn_RemoveContractPeriod" Text="Remove" runat="server" OnClientClick="return confirm('Message')"/>
link|flag
but how then do i hook it up so after confirmation postbacks and calls the server code? – Dustin Getz Oct 29 at 17:47
If confirm function returns false, the __doPostback wont be called. otherwise, click event will raise. – Mehdi Golchin Oct 29 at 18:16

Your Answer

Get an OpenID
or

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