|
|
|
|
Dot Net Interview Questions !!!
Interview Tips
on iGold.in
|
|
|
|
 |
Links
|
Tips and Tricks
Category :
Dotnet - General
|
|
|
|
How to emmbed client side confirmation box
|
The following code can be used to create a confirmation box. Based on selection of button in confirmation dialog the page will makes a postback.
The code
<asp:Button ID="Button2" runat="server" OnClientClick="javascript:return confirm
('Do you wish to Delete ?');"Text="Button" />
|
|