91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ASP.NET中如何使用 CheckBoxList組件

發布時間:2021-07-16 11:22:24 來源:億速云 閱讀:143 作者:Leah 欄目:編程語言

ASP.NET中如何使用 CheckBoxList組件,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

假定有一個CheckBoxList組件和有十個CheckBox組件,并且這個CheckBoxList組件是由這十個CheckBox組件構成的。為了檢測這十個CheckBox組件中的哪些已經被選擇的,如果程序中選用的CheckBox組件就需要如下代碼:

 if ( C1 . Checked )   {  }   if ( C2 . Checked )   {  }   ....   if ( C10 . Checked )   {   }

但如果程序中使用了CheckBoxList組件,就只需要以下這幾行代碼就可以了:

 for ( int i = 0 ; i ﹤ CHK . Items . Count ; i++ )   {  if ( CHK . Items [ i ] . Selected )  {   //處理你要完成的工作  }   }

注釋:其中C1 -- C10是CheckBox組件,CHK是CheckBoxList組件

可見用了CheckBoxList組件,在程序設計中的確更明了,更簡潔了。并且只要你掌握了CheckBoxList組 件的用法,CheckBox組件的用法大致也就會了。

一. 如何在創建一個ASP.NET CheckBoxList組件:

﹤asp:CheckBoxList runat = "server" id = C1 ﹥  ﹤asp:ListItem Value = 1 ﹥***個檢查框﹤/asp:ListItem ﹥  ﹤asp:ListItem Value = 2 ﹥第二個檢查框﹤/asp:ListItem ﹥  ﹤asp:ListItem Value = 3 ﹥第三個檢查框﹤/asp:ListItem ﹥  .....   //注釋:在這里可以加入若干個檢查框   ﹤/asp:CheckBoxList ﹥

在ASP.NET頁面中加入上面的語句,就可以產生一個名稱為"C1"的CheckBoxList組件了。

二. ASP.NET CheckBoxList組件中經常使用到的屬性:

I .TextAlign屬性:取值為:Left、Right。如果TextAlign的值為Left則CheckBoxList組件中的檢查框的文字在選框的左邊,同理如果TextAlign的值為Right則檢查框的文字在選框的右邊。

II .Selected屬性:為布爾型,判定組件中的檢查框是否被選中。

III .RepeatColumns屬性:在CheckBoxList組件中有若干檢查框,此屬性主要是設定這些檢查框到底用多少行來顯示。

IV .RepeatDirection屬性:此屬性的值可為:Vertical、Horizontal。當設定了RepeatColumns屬性后,設定此屬性是如何排列組件中的各個檢查框的。具體如下:

假定CheckBoxList組件有四個檢查框,并且RepeatColumns屬性值為2。

(1).如果RepeatDirection = Vertical,則在頁面中檢查框的顯示方式如下:

檢查框01 檢查框03

檢查框02 檢查框04

(2).如果RepeatDirection = Horizontal,則在頁面中檢查框的顯示方式如下:

檢查框01 檢查框02

檢查框03 檢查框04

V .Count屬性:返回CheckBoxList組件中有多少檢查框。

三. ASP.NET CheckBoxList組件編程中經常使用到的方法:

(1).在組件中增加一個檢查框,語法如下:

CHKList . Items . Add ( new ListItem ( ﹤ text ﹥ , ﹤ value ﹥ ) )

(2).訪問組件中的檢查框,語法如下:

CHKList . Items [ ﹤ index ﹥ ]

(3).刪除組件中的檢查框,語法如下:

CHKList . Items . Remove ( ﹤ index ﹥ )

四. 實例介紹ASP.NET CheckBoxList組件的使用方法:

(1).如何判定選擇了組件中的哪些檢查框:

在程序中,是通過處理Selected屬性和Count屬性來完成的,具體如下:

for ( int i = 0 ; i ﹤ ChkList . Items . Count ; i++ )  {  if( ChkList . Items [ i ] . Selected )  {  lblResult . Text += ChkList . Items [ i ] .Text + "  " ;  }  }

(2).如何設定ASP.NET CheckBoxList組件的外觀布局:

CheckBoxList組件有比較多的屬性來設定它的外觀,在本文介紹的程序中,主要是通過四個方面來設定組件的外觀布局的:組件中的檢查框中的文本和選框的排列位置、組件中各個檢查框布局、組件中各個檢查框排列方向和組件中各個檢查框的排列行數,具體的程序代碼如下:

//組件中的檢查框中的文本和選框的排列位置  switch ( cboAlign . SelectedIndex )  {   case 0 :  ChkList . TextAlign = TextAlign . Left ;  break ;   case 1 :  ChkList . TextAlign = TextAlign . Right ;  break ;  }  //組件中各個檢查框布局  switch ( cboRepeatLayout . SelectedIndex )  {   case 0 :  ChkList . RepeatLayout = RepeatLayout . Table ;  break ;   case 1 :  ChkList . RepeatLayout = RepeatLayout . Flow ;  break ;  }  //組件中各個檢查框排列方向  switch ( cboRepeatDirection . SelectedIndex)  {   case 0 :  ChkList . RepeatDirection = RepeatDirection . Vertical ;  break ;   case 1 :  ChkList . RepeatDirection = RepeatDirection . Horizontal ;  break ;  }  //組件中各個檢查框的排列行數  try {   int cols = int . Parse ( txtRepeatCols.Text ) ;   ChkList . RepeatColumns = cols ;  }  catch ( Exception )  {  }

五. 文中源程序代碼(Check.aspx):

Check.aspx源程序代碼如下:

﹤% @ Page Language = "C#" %﹥  ﹤html ﹥  ﹤head ﹥  ﹤title ﹥ CheckBoxList組件演示程序 ﹤/title ﹥  ﹤script runat = "server" ﹥   protected void Button_Click ( object sender , EventArgs e )   {  //組件中的檢查框中的文本和選框的排列位置  switch ( cboAlign . SelectedIndex )  {   case 0 :  ChkList . TextAlign = TextAlign . Left ;  break ;   case 1 :  ChkList . TextAlign = TextAlign . Right ;  break ;  }  //組件中各個檢查框布局  switch ( cboRepeatLayout . SelectedIndex )  {   case 0 :  ChkList . RepeatLayout = RepeatLayout . Table ;  break ;   case 1 :  ChkList . RepeatLayout = RepeatLayout . Flow ;  break ;  }  //組件中各個檢查框排列方向  switch ( cboRepeatDirection . SelectedIndex)  {   case 0 :  ChkList . RepeatDirection = RepeatDirection . Vertical ;  break ;   case 1 :  ChkList . RepeatDirection = RepeatDirection . Horizontal ;  break ;  }  //組件中各個檢查框的排列行數  try {   int cols = int . Parse ( txtRepeatCols.Text ) ;   ChkList . RepeatColumns = cols ;  }  catch ( Exception )  {  }  lblResult . Text = "" ;  for ( int i = 0 ; i ﹤ ChkList . Items . Count ; i++ )  {   if( ChkList . Items [ i ] . Selected )   {  lblResult . Text += ChkList . Items [ i ] .Text + "  " ;   }  }   }   ﹤/script ﹥   ﹤/head ﹥   ﹤body ﹥   ﹤form runat = "server" ﹥  ﹤h2 align = center ﹥ CheckBoxList組件演示程序 ﹤/h2 ﹥  ﹤table ﹥   ﹤tr ﹥  ﹤td ﹥ 組件中的文本排列位置: ﹤/td ﹥  ﹤td ﹥  ﹤asp:DropDownList id = cboAlign runat = "server" ﹥   ﹤asp:ListItem ﹥ 居左 ﹤/asp:ListItem ﹥   ﹤asp:ListItem ﹥ 居右 ﹤/asp:ListItem ﹥  ﹤/asp:DropDownList ﹥  ﹤/td ﹥   ﹤/tr ﹥   ﹤tr ﹥  ﹤td ﹥ 組件中各個條目布局: ﹤/td ﹥  ﹤td ﹥  ﹤asp:DropDownList id = cboRepeatLayout runat = "server" ﹥   ﹤asp:ListItem ﹥ 表格型 ﹤/asp:ListItem ﹥   ﹤asp:ListItem ﹥ 緊湊型 ﹤/asp:ListItem ﹥  ﹤/asp:DropDownList ﹥  ﹤/td ﹥   ﹤/tr ﹥   ﹤tr ﹥  ﹤td﹥ 組件中各個條目排列方向:﹤/td ﹥  ﹤td ﹥  ﹤asp:DropDownList id = cboRepeatDirection runat = "server" ﹥   ﹤asp:ListItem ﹥ 水平方向 ﹤/asp:ListItem ﹥   ﹤asp:ListItem ﹥ 垂直方向 ﹤/asp:ListItem ﹥  ﹤/asp:DropDownList ﹥  ﹤/td ﹥   ﹤/tr ﹥   ﹤tr ﹥  ﹤td ﹥ 組件中各個條目排列行數: ﹤/td ﹥  ﹤td ﹥ ﹤asp:TextBox id = "txtRepeatCols" runat = "server" /﹥ ﹤/td ﹥   ﹤/tr ﹥  ﹤/table ﹥

請選擇你所需要學習的計算機語言類型:

﹤asp:CheckBoxList id = "ChkList" RepeatDirection = Horizontal runat = "server" ﹥   ﹤asp:ListItem ﹥ Visual C++ .Net ﹤/asp:ListItem ﹥   ﹤asp:ListItem ﹥ Visual C# ﹤/asp:ListItem ﹥   ﹤asp:ListItem ﹥ VB.NET ﹤/asp:ListItem ﹥   ﹤asp:ListItem ﹥ JScript.NET ﹤/asp:ListItem ﹥   ﹤asp:ListItem ﹥ Visual J# ﹤/asp:ListItem ﹥  ﹤/asp:CheckBoxList ﹥     ﹤asp:Button Text = "提交" runat = "server" onclick = "Button_Click" /﹥   ﹤h2 ﹥ ﹤font color = red ﹥ 你選擇的計算機語言類型為: ﹤/font ﹥ ﹤/h2 ﹥   ﹤asp:Label id = lblResult runat = "server" /﹥   ﹤/form ﹥   ﹤/body ﹥  ﹤/html ﹥

六. ASP.NET CheckBoxList組件編程總結:

其實CheckBoxList組件也是一個服務器端組件。本文介紹了CheckBoxList組件中的一些主要的屬性和方法,并且通過一個比較典型的例子說明了在ASP.NET頁面中如何進行與CheckBoxList組件相關的編程,其實對于另外一個比較重要的組件--CheckBox來說,他們中有許多的相似之處,掌握了CheckBoxList組件的用法大致也就掌握了CheckBox組件的用法。

看完上述內容,你們掌握ASP.NET中如何使用 CheckBoxList組件的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

木里| 孝感市| 彭阳县| 建瓯市| 台南市| 黄冈市| 罗定市| 名山县| 高清| 屏东县| 砚山县| 循化| 三明市| 井冈山市| 滕州市| 娱乐| 邻水| 寿宁县| 西丰县| 台江县| 治县。| 洞头县| 永善县| 宜城市| 吴堡县| 新兴县| 江门市| 大兴区| 广灵县| 鄂尔多斯市| 建平县| 福安市| 明水县| 乐安县| 泌阳县| 武夷山市| 中山市| 北海市| 门源| 翁牛特旗| 肃宁县|