ASP
這時你可能要問
假定有一個CheckBoxList組件和有十個CheckBox組件
if ( C
{
}
if ( C
{
}
if ( C
{
}
但如果程序中使用了CheckBoxList組件
for ( int i =
{
if ( CHK
{
//處理你要完成的工作
}
}
注釋
可見用了CheckBoxList組件
一. 如何在創建一個ASP
﹤asp:CheckBoxList runat = "server" id = C
﹤asp:ListItem Value =
﹤asp:ListItem Value =
﹤asp:ListItem Value =
//注釋
﹤/asp:CheckBoxList ﹥
在ASP
二. ASP
I
II
III
IV
假定CheckBoxList組件有四個檢查框
(
檢查框
檢查框
(
檢查框
檢查框
V
三. ASP
(
CHKList
(
CHKList
(
CHKList
四. 實例介紹ASP
(
在程序中
for ( int i =
{
if( ChkList
{
lblResult
}
}
(
CheckBoxList組件有比較多的屬性來設定它的外觀
組件中各個檢查框排列方向和組件中各個檢查框的排列行數
//組件中的檢查框中的文本和選框的排列位置
switch ( cboAlign
{
case
ChkList
break ;
case
ChkList
break ;
}
//組件中各個檢查框布局
switch ( cboRepeatLayout
{
case
ChkList
break ;
case
ChkList
break ;
}
//組件中各個檢查框排列方向
switch ( cboRepeatDirection
{
case
ChkList
break ;
case
ChkList
break ;
}
//組件中各個檢查框的排列行數
try
{
int cols = int
ChkList
}
catch ( Exception )
{
}
五. 文中源程序代碼(Check
Check
﹤% @ Page Language = "C#" %﹥
﹤html ﹥
﹤head ﹥
﹤title ﹥ CheckBoxList組件演示程序 ﹤/title ﹥
﹤script runat = "server" ﹥
protected void Button_Click ( object sender
{
//組件中的檢查框中的文本和選框的排列位置
switch ( cboAlign
{
case
ChkList
break ;
case
ChkList
break ;
}
//組件中各個檢查框布局
switch ( cboRepeatLayout
{
case
ChkList
break ;
case
ChkList
break ;
}
//組件中各個檢查框排列方向
switch ( cboRepeatDirection
{
case
ChkList
break ;
case
ChkList
break ;
}
//組件中各個檢查框的排列行數
try
{
int cols = int
ChkList
}
catch ( Exception )
{
}
lblResult
for ( int i =
{
if( ChkList
{
lblResult
}
}
}
﹤/script ﹥
﹤/head ﹥
﹤body ﹥
﹤form runat = "server" ﹥
﹤h
﹤table ﹥
﹤tr ﹥
﹤td ﹥ 組件中的文本排列位置
﹤td ﹥
﹤asp:DropDownList id = cboAlign runat = "server" ﹥
﹤asp:ListItem ﹥ 居左 ﹤/asp:ListItem ﹥
﹤asp:ListItem ﹥ 居右 ﹤/asp:ListItem ﹥
﹤/asp:DropDownList ﹥
﹤/td ﹥
﹤/tr ﹥
﹤tr ﹥
﹤td ﹥ 組件中各個條目布局
﹤td ﹥
﹤asp:DropDownList id = cboRepeatLayout runat = "server" ﹥
﹤asp:ListItem ﹥ 表格型 ﹤/asp:ListItem ﹥
﹤asp:ListItem ﹥ 緊湊型 ﹤/asp:ListItem ﹥
﹤/asp:DropDownList ﹥
﹤/td ﹥
﹤/tr ﹥
﹤tr ﹥
﹤td﹥ 組件中各個條目排列方向
﹤td ﹥
﹤asp:DropDownList id = cboRepeatDirection runat = "server" ﹥
﹤asp:ListItem ﹥ 水平方向 ﹤/asp:ListItem ﹥
﹤asp:ListItem ﹥ 垂直方向 ﹤/asp:ListItem ﹥
﹤/asp:DropDownList ﹥
﹤/td ﹥
﹤/tr ﹥
﹤tr ﹥
﹤td ﹥ 組件中各個條目排列行數
﹤td ﹥ ﹤asp:TextBox id = "txtRepeatCols" runat = "server" /﹥ ﹤/td ﹥
﹤/tr ﹥
﹤/table ﹥
請選擇你所需要學習的計算機語言類型
﹤asp:CheckBoxList id = "ChkList" RepeatDirection = Horizontal runat = "server" ﹥
﹤asp:ListItem ﹥ Visual C++
﹤asp:ListItem ﹥ Visual C# ﹤/asp:ListItem ﹥
﹤asp:ListItem ﹥ VB
﹤asp:ListItem ﹥ JScript
﹤asp:ListItem ﹥ Visual J# ﹤/asp:ListItem ﹥
﹤/asp:CheckBoxList ﹥
﹤asp:Button Text = "提交" runat = "server" onclick = "Button_Click" /﹥
﹤h
﹤asp:Label id = lblResult runat = "server" /﹥
﹤/form ﹥
﹤/body ﹥
﹤/html ﹥
六. ASP
其實CheckBoxList組件也是一個服務器端組件
From:http://tw.wingwit.com/Article/program/net/201311/12432.html