ASP.NET ListBox Rows 属性

春日樱亭

ASP.NET Rows 属性


ListBox 控件

定义和用法

属性用于获取或设置 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>

演示实例 »

版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com

目录[+]

取消
微信二维码
微信二维码
支付宝二维码