<%@ Page language="c#" %>
<script runat="server">
void Page_Load(object sender, System.EventArgs e)
{Panel1.Visible=false;
}
void Button1_Click(object sender, System.EventArgs e)
{
if(CheckBox1.Checked==true)
Panel1.Visible=true;
}
</script>
<HTML>
<body bgcolor=rgb(206,130,82)>
<form id="Form1" method="post" runat="server">
<font style="font-size:14px">
<asp:Panel id="Panel1" runat="server" Height="88px" style="Z-INDEX: 101; LEFT: 220px; POSITION: absolute; TOP: 30px"
Width="88px">
<IMG alt="" src="jc_qc.gif"></asp:Panel>
<asp:Panel id="Panel2" runat="server"
Height="56px" Width="192px" Font-Size="Smaller"> 汽车机械基础:
本书介绍了机械汽车的基础知识,包括十二章。第一章介绍了汽车的传动系统 ... ...</asp:Panel><p>
<asp:CheckBox id="CheckBox1"
runat="server" Text="显示图片"></asp:CheckBox><p>
<asp:Button id="Button1" runat="server"
Text="提交" onclick="Button1_Click"></asp:Button>
</font></form>
</body>
</HTML>
上面的代码是我买的这本书所带的光盘里的例子,对于这个代码我有些疑问,所以想请教一下大家,上面红色部分应该是服务器脚本吧,它是不是应该与在*.aspx.cs文件里呢?如果是这样,这个脚本又为什么和html代码在一个.aspx的文件里的,这个我不太理。还有,服务器脚本和*.aspx.cs里出现的private void Button1_Click(object sender, System.EventArgs e)有什么样的关联,一系列问题缠绕着我,希望大家能给以指导。