ASP.NET RadioButtonList RepeatColumns 属性
ASP.NET RadioButtonList RepeatColumns 属性
RadioButtonList 控件定义和用法
RepeatColumns 属性用于获取或设置当显示单选按钮列表时所用的列数。
语法
<asp:RadioButtonList RepeatColumns="num" runat="server">
Some Content
</asp:RadioButtonList >
Some Content
</asp:RadioButtonList >
属性 | 描述 |
---|---|
num | 规定要显示的列数。默认是 "1"。 |
实例
下面的实例把 RadioButtonList 控件中的 RepeatColumns 属性设置为 "2":
<form runat="server">
<asp:RadioButtonList id="rb1"
runat="server" RepeatColumns="2">
Some content
</asp:RadioButtonList>
</form>
<asp:RadioButtonList id="rb1"
runat="server" RepeatColumns="2">
Some content
</asp:RadioButtonList>
</form>
演示实例 »
相关文章
- ASP.NET 教程
- ASP.NET Web Pages WebSecurity 参考手册
- ASP.NET Razor 标记
- ASP.NET Razor VB 逻辑
- ASP.NET ListBox 控件
- ASP.NET Style 控件
- WebSecurity CreateAccount 方法
- WebSecurity GetPasswordChangeDate 方法
- WebSecurity ResetPassword 方法
- Listbox
- ASP.NET HTML 控件 Textbox 2
- ASP.NET HTML 控件 ArrayList DropDownLis
- ASP.NET HTML 控件 Hashtable RadioButtonList 1
- C# 实例 可重复使用的头部和底部
- VB 实例 实例解释
- ASP.NET Web Pages - Chart 帮助器
- ASP.NET Calendar CellPadding 属性
- ASP.NET Calendar DayHeaderStyle 属性
- ASP.NET Calendar SelectedDayStyle 属性
- ASP.NET Calendar VisibleDate 属性