扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:马金虎 来源:yesky 2007年11月8日
关键字: Windows
<% @ 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 + " <br > " ; } } } </script > </head > <body > <form runat = "server" > <h1 align = center > CheckBoxList组件演示程序 </h1 > <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 > <br > 请选择你所需要学习的计算机语言类型: <br > <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 > <br > <asp:Button Text = "提交" runat = "server" onclick = "Button_Click" /> <h1 > <font color = red > 你选择的计算机语言类型为: </font > </h1 > <asp:Label id = lblResult runat = "server" /> </form > </body > </html > |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者