?
本文檔使用 php中文網(wǎng)手冊 發(fā)布
屬性用于獲取或設置 ListBox 中的可見行數(shù)(無滾動)。
<asp:ListBox Rows="num" runat="server">
Some Content
</asp:ListBox>
屬性 | 描述 |
---|---|
num | 規(guī)定 ListBox 中的可見行數(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>