Preferred Language:
Listing 2.29 - ShowPanel.aspx
Illustrates how to use the ASP.NET Panel control.
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void btnSubmit_Click(object sender, EventArgs e)
{
if (rdlOther.Checked)
pnlOther.Visible = true;
else
pnlOther.Visible = false;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>Show Panel</title>
</head>
<body>
<form id="form1" runat="server">
<div>
Select your favorite programming language:
<br /><br />
<asp:RadioButton
id="rdlVisualBasic"
GroupName="language"
Text="Visual Basic"
Runat="server" />
<br /><br />
<asp:RadioButton
id="rdlCSharp"
GroupName="language"
Text="C#"
Runat="server" />
<br /><br />
<asp:RadioButton
id="rdlOther"
GroupName="language"
Text="Other Language"
Runat="server" />
<br />
<asp:Panel
id="pnlOther"
Visible="false"
Runat="server">
<asp:Label
id="lblOther"
Text="Other Language:"
AssociatedControlID="txtOther"
Runat="server" />
<asp:TextBox
id="txtOther"
Runat="server" />
</asp:Panel>
<br /><br />
<asp:Button
id="btnSubmit"
Text="Submit"
Runat="server" OnClick="btnSubmit_Click" />
</div>
</form>
</body>
</html>
ASP.NET 3.5 Unleashed
- Containing almost 2,000 pages of code samples and in-depth explanation of the
ASP.NET 3.5 Framework, ASP.NET 3.5 Unleashed is the most comprehensive book
written on the ASP.NET 3.5 Framework.
ASP.NET 3.5 Unleashed is now available in your local bookstore and online (Published January 7, 2008).
All of the code samples from this book are hosted "live" at this website.
Click here
to view the table of contents and code samples.