Created
September 1, 2009 18:21
-
-
Save anonymous/179278 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<asp:CheckBox runat="server" ID="chbx_notifyRecipientByEmail" Text=" Please also notify the gift recipient by email, which may include a personal message." OnCheckedChanged="onChecked_chbx_notifyRecipientByEmail" AutoPostBack="True" /> | |
<asp:Panel ID="pnl_RecipientEmailAndMessage" runat="server" Visible="false"> | |
<br /> | |
<asp:Label ID="lbl_recipientEmail" runat="server">Recipient's Email:</asp:Label><br /> | |
<asp:TextBox ID="tb_recipientEmail" runat="server" maxlength="70" Width="200px" /> | |
<br /><br /> | |
<asp:Label ID="lbl_personalMessage" runat="server">Add a personal message for your gift recipient:</asp:Label><br /> | |
<asp:TextBox ID="tb_personalMessage" runat="server" maxlength="500" TextMode="MultiLine" Height="50px" Width="200px"/> | |
</asp:Panel> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment