ASP.NET ListBox Rows 屬性
ASP.NET Rows 屬性

定義和用法
屬性用于獲取或設(shè)置 ListBox 中的可見行數(shù)(無滾動)。
語法
<asp:ListBox Rows="num" runat="server">
Some Content
</asp:ListBox>
Some Content
</asp:ListBox>
屬性 | 描述 |
---|---|
num | 規(guī)定 ListBox 中的可見行數(shù)(無滾動)。 |
實(shí)例
下面的實(shí)例設(shè)置 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>
演示實(shí)例 ?

相關(guān)文章
- ASP.NET Web Pages HTML 表單
- ASP.NET Web Pages PHP
- ASP.NET MVC 簡介
- ASP.NET MVC 文件夾
- ASP.NET Button 控件
- ASP.NET 數(shù)據(jù)庫連接
- 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# 實(shí)例 Switch 條件
- htmlimage 2
- ASP.NET Calendar SelectMonthText 屬性
- ASP.NET Calendar TitleStyle 屬性