ASP.NET ListBox Rows 属性
ASP.NET Rows 属性
ListBox 控件定义和用法
属性用于获取或设置 ListBox 中的可见行数(无滚动)。
语法
<asp:ListBox Rows="num" runat="server">
Some Content
</asp:ListBox>
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: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 Web Pages HTML 表单
- ASP.NET Web Pages PHP
- ASP.NET MVC 简介
- ASP.NET MVC 文件夹
- ASP.NET Button 控件
- ASP.NET 数据库连接
- ASP.NET Table 控件
- WebSecurity IsAuthenticated 属性
- WebSecurity ConfirmAccount 方法
- WebSecurity ResetPassword 方法
- HTML Button
- ASP.NET HTML 控件 Checkbox
- ASP.NET HTML 控件 Hyperlink
- Listbox
- ASP.NET HTML 控件 CompareValidator
- ASP.NET HTML 控件 RequiredFieldValidator
- C# 实例 Switch 条件
- htmlimage 2
- ASP.NET Calendar SelectMonthText 属性
- ASP.NET Calendar TitleStyle 属性