Confirmation Message If behind your button, your code execute some irreversible tasks, you should want to display a confirmation message box before validation the click. The property PopupMessage when containing a message, generates the popup for you. <i386:EnchancedButton id="EnchancedButton3" runat="server" Text="Submit" ClickOnce="true" ConfirmationMessage="Are you sure?"/>
Click Once Prevent a web user from clicking the button more than once. <i386:EnchancedButton id="EnchancedButton2" runat="server" Text="Click Once" ClickOnce="True" /> private void EnchancedButton2_Click(object sender, System.EventArgs e) { Thread.Sleep(1000); }