?? checkboxlist1.aspx
字號:
<Script Language="C#" Runat="Server">
public void Sub_Click(Object src,EventArgs e)
{
string Resulte = null;
for(int i=0;i<chkList.Items.Count;i++)
{
if(chkList.Items[i].Selected)
{
Resulte = Resulte + "CheckBox"+i.ToString()+"已經選中<br>";
}
}
lblShow.Text = Resulte;
}
</script>
<html>
<head>
<title></title>
</head>
<body>
<b>CheckBoxList控件演示</b>
<hr>
<form runat="server">
<asp:CheckBoxList id="chkList" runat="server" >
<asp:ListItem>CheckBox0</asp:ListItem>
<asp:ListItem>CheckBox1</asp:ListItem>
<asp:ListItem>CheckBox2</asp:ListItem>
<asp:ListItem>CheckBox3</asp:ListItem>
<asp:ListItem>CheckBox4</asp:ListItem>
</asp:CheckBoxList>
<asp:Button Text="提交" OnClick="Sub_Click" runat="server" />
<hr>
<asp:Label id="lblShow" runat="server" />
</form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -