ASP.NET ListBox Rows 属性

返回上一级

ASP.NET ListBox Rows 属性用于获取或设置 ListBox 中的可见行数(无滚动)

语法

<asp:ListBox Rows="num" runat="server">Some Content</asp:ListBox>
属性 描述
num 规定 ListBox 中的可见行数(无滚动)

范例

下面的范例设置 ListBox 控件的 Rows 属性

<form runat="server">
<asp:ListBox id="lb1" Rows="5" runat="server">
  <asp:ListItem Value="Item1" />
  <asp:ListItem Value="Item2" />
  <asp:ListItem Value="Item3" />
  <asp:ListItem Value="Item4" />
  <asp:ListItem Value="Item5" />
</asp:ListBox>
</form>

返回上一级

ASP.NET 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.