ASP.NET Rows 属性

定义和用法

Rows 属性用于获取或设置 ListBox 中的可见行数(无滚动)。

语法

  1. <asp:ListBox Rows="num" runat="server">
  2. some content
  3. </asp:ListBox>
属性 描述
num 规定 ListBox 中的可见行数(无滚动)。

实例

下面的例子设置了 ListBox 控件的 Rows 属性:

  1. <form runat="server">
  2. <asp:ListBox id="lb1" Rows="5" runat="server">
  3.  
  4. <asp:ListItem Value="Item1" />
  5. <asp:ListItem Value="Item2" />
  6. <asp:ListItem Value="Item3" />
  7.  
  8. <asp:ListItem Value="Item4" />
  9. <asp:ListItem Value="Item5" />
  10. </asp:ListBox>
  11. </form>

实例

  • 设置 ListBox 控件的 Rows 属性