案例:ASP.NET案例     状态:不可编辑再运行    进入竖版
 运行结果 
x
 
1
2
<script  runat="server">
3
Sub Page_Load(sender As Object, e As EventArgs)
4
   if check1.Checked then
5
     panel1.Visible=false
6
   else
7
     panel1.Visible=true
8
   end if
9
End Sub
10
</script>
11
12
<html>
13
<body>
14
15
<form runat="server">
16
<asp:Panel id="panel1"
17
runat="server" BackColor="#ff0000"
18
Height="100px" Width="100px">
19
Hello World!
20
</asp:Panel>
21
<asp:CheckBox id="check1"
22
Text="隐藏 Panel 控件"
23
runat="server"/>
24
<br /><br />
25
<asp:Button Text="重新加载" runat="server" />
26
</form>
27
28
</body>
29
</html>
30