Skip to content

Instantly share code, notes, and snippets.

Created September 1, 2009 18:21
Show Gist options
  • Save anonymous/179278 to your computer and use it in GitHub Desktop.
Save anonymous/179278 to your computer and use it in GitHub Desktop.
<asp:CheckBox runat="server" ID="chbx_notifyRecipientByEmail" Text="&nbsp;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