Skip to content

Instantly share code, notes, and snippets.

@kshoufer
Created August 20, 2012 03:57
Show Gist options
  • Save kshoufer/3400548 to your computer and use it in GitHub Desktop.
Save kshoufer/3400548 to your computer and use it in GitHub Desktop.
Test ASP.NET panel
<asp:Panel ID="Panel1" runat="server"
style="top: 24px; left: 0px; position: absolute; height: 144px; width: 176px; border-style: ridge">
<asp:Label ID="lblChooseOne" runat="server" Text="Choose One"
style="top: 0px; left: 0px; position: absolute; height: 19px; width: 77px"></asp:Label><br /><br />
<asp:RadioButton ID="rbBigSur" runat="server" Text="Big Sur" GroupName="Region"
oncheckedchanged="rbBigSur_CheckedChanged" /><br />
<asp:RadioButton ID="rbJoshuaTree" runat="server" Text="Joshua Tree" GroupName="Region"
oncheckedchanged="rbJoshuaTree_CheckedChanged"/><br />
<asp:RadioButton ID="rbZion" runat="server" Text="Zion" GroupName="Region"
oncheckedchanged="rbZion_CheckedChanged"/>
</asp:Panel>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment