Hi Guys,
I am using vb.net code and I have below code in my application
<asp:Panel ID="pnlArchive" DefaultButton="ibtnArchive" runat="server">
<table>
<tr>
<td>
Please Enter Your Password to Set Archive:
</td>
<td>
<asp:TextBox ID="txtArchive" runat="server"></asp:TextBox>
</td>
<td>
<asp:ImageButton ID="ibtnArchive" runat="server" ImageUrl="~/images1/OK_button.png" />
</td>
</tr>
</table>
</asp:Panel>
Now I want to open jquery Modal Dialog Box when user clicks above Image Button, Modal Dialog box will be having Yes and No option. With my Customize message on it. Which will return some values when Yes is clicked or No is clicked by user of Modal Dailog Box, so that we can further perform some other code.
Thanks.
Best Regards, Manoj