精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

ASP.NET ListBox Rows 屬性

ASP.NET Rows 屬性

ListBox 控件 ListBox 控件

定義和用法

屬性用于獲取或設(shè)置 ListBox 中的可見行數(shù)(無滾動)。

語法

<asp:ListBox Rows="num" runat="server">
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>

演示實(shí)例 ?
ListBox 控件 ListBox 控件
相關(guān)文章