ASP.NET TextBox Rows 属性
ASP.NET TextBox Rows 属性
TextBox 控件定义和用法
Rows 属性用于设置或返回 TextBox 控件的高度。
该属性仅在 TextMode="Multiline" 时使用。
语法
<asp:TextBox runat="server"
Rows="num" TextMode="MultiLine" />
属性 | 描述 |
---|---|
num | 数值,该值规定文本框的高度,以行数计。 |
实例
下面的实例设置了 TextBox 控件的高度:
<form runat="server">
<asp:TextBox id="tb1" runat="server"
TextMode="MultiLine" Rows="5" />
</form>
<asp:TextBox id="tb1" runat="server"
TextMode="MultiLine" Rows="5" />
</form>
演示实例 »
相关文章
- ASP.NET Web Pages Database 参考手册
- ASP.NET MVC 数据库
- ASP.NET MVC 模型
- ASP.NET CheckBoxList 控件
- ASP.NET HyperLink 控件
- ASP.NET ImageButton 控件
- WebSecurity CurrentUserName 属性
- WebSecurity ConfirmAccount 方法
- HTML Image
- HTML InputImage
- ASP.NET HTML 控件 Label
- RadiobuttonList
- ASP.NET HTML 控件 Repeater
- ASP.NET HTML 控件 Textbox 2
- Textbox 3
- ASP.NET HTML 控件 ArrayList RadioButtonList
- VB 实例 基本的 HTML 表单
- VB 实例 If Else 条件
- ASP.NET Calendar CellPadding 属性
- ASP.NET Calendar NextMonthText 属性