举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > asp.net attributes ASP.NET Items 属性

asp.net attributes ASP.NET Items 属性

2023-04-15 01:18 ASP.NET教程

asp.net attributes ASP.NET Items 属性

asp.net attributes ASP.NET Items 属性

asp.net attributes

ASP.NET Items 属性


ListControl 控件参考手册 ListControl 控件参考手册

定义和用法

Items 属性表示列表控件中的项目。

该属性通常用于获取列表控件中每个项目的属性。


实例

下面的实例显示了多个被选中的复选框项目:

<script runat="server">
Sub ClickCheck(sender As Object, e As EventArgs)
  lbl1.Text = "Selected Item(s):<br />"
  Dim i As Integer
  For i = 0 To cb1.Items.Count - 1
    If cb1.Items(i).Selected Then
      lbl1.Text = lbl1.Text & cb1.Items(i).Text & "<br />"
    End If
  Next
End Sub
</script>

<form method="post" runat="server">
<asp:CheckBoxList id="cb1" AutoPostBack="True"
OnSelectedIndexChanged="ClickCheck" runat="server">
  <asp:ListItem Value="Item 1" />
  <asp:ListItem Value="Item 2" />
  <asp:ListItem Value="Item 3" />
  <asp:ListItem Value="Item 4" />
</asp:CheckBoxList>

<br />
<asp:label id="lbl1" runat="server"/>
</form>

演示实例 »

ListControl 控件参考手册 ListControl 控件参考手册
阅读全文
以上是编程学为你收集整理的asp.net attributes ASP.NET Items 属性全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部