How to embed alert confirm messagebox box into asp.net using c# | confirm box in Asp.net Using c#
<asp:button id="print" runat="server" text="Print" commandname="Print" OnClientClick="return confirm('Are you sure want to print record');" Width="40px" onclick="print_Click" />
By using CommandName and OnClientClick we can embed or use alert box in asp.net
<asp:button id="print" runat="server" text="Print" commandname="Print" OnClientClick="return confirm('Are you sure want to print record');" Width="40px" onclick="print_Click" />
By using CommandName and OnClientClick we can embed or use alert box in asp.net
0 comments: