?? checkbox.aspx
字號(hào):
<Script Language="C#" Runat="Server">
public void Sub_Click(Object src,EventArgs e)
{
string Resulte = null;
if(chk1.Checked==true)
{
Resulte = Resulte + "您選擇中了Marry<br>";
}
if(chk2.Checked==true)
{
Resulte = Resulte + "您選擇中了John<br>";
}
if(chk3.Checked==true)
{
Resulte = Resulte + "您選擇中了Tom<br>";
}
if(chk4.Checked==true)
{
Resulte = Resulte + "您選擇中了Susan<br>";
}
if(chk5.Checked==true)
{
Resulte = Resulte + "您選擇中了Smith<br>";
}
lblShow.Text = Resulte;
}
</script>
<html>
<head>
<title></title>
</head>
<body>
<H3>使用CheckBox控件</h3> <Hr>
<form runat="server">
<asp:CheckBox id="chk1" Text="Marry" runat="server" />
<asp:CheckBox id="chk2" Text="John" runat="server" />
<asp:CheckBox id="chk3" Text="Tom" runat="server" />
<asp:CheckBox id="chk4" Text="Susan" runat="server" />
<asp:CheckBox id="chk5" Text="Smith" runat="server" />
<asp:Button Text="提交" OnClick="Sub_Click" runat="server" />
<hr>
<asp:Label id="lblShow" runat="server" />
</form>
</body>
</html>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -