/ Published in: HTML
Expand |
Embed | Plain Text
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CodeSnippet.aspx.cs" Inherits="Playground.CodeSnippet" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="ctlHead" runat="server"> </head> <body> <form id="ctlForm" runat="server"> <asp:Button id="ctlAddContact" runat="server" Text="Add Contact" /> <div id="ctlAddContactModal" style="display: none;"> <asp:Label ID="lblFirstNameCaption" runat="server" AssociatedControlID="txtFirstName" Text="First Name" /> <asp:TextBox ID="txtFirstName" runat="server" /> <asp:Label ID="lblLastNameCaption" runat="server" AssociatedControlID="txtLastName" Text="Last Name" /> <asp:TextBox ID="txtLastName" runat="server" /> <asp:Button ID="btnCancel" runat="server" Text="Cancel" /> <asp:LinkButton ID="btnSave" runat="server" Text="Save" onclick="btnSave_Click" /> </div> <script type="text/javascript"> $(function() { $('#<%= ctlAddContact.ClientID %>').click(function(e) { e.preventDefault(); $.blockUI({message: $('#ctlAddContactModal')}); }); $('#<%= btnCancel.ClientID %>').click(function(e) { $.unblockUI(); }); var btnSaveId = '<%= btnSave.ClientID %>'; $('#' + btnSaveId).click(function(e) { e.preventDefault(); $.unblockUI({onUnblock: function() { eval($('#' + btnSaveId).attr('href')); } }); }); }); </script> </form> </body> </html>
You need to login to post a comment.
