- ASP.NET 教程
- ASP.NET简介
- ASP.NET Web Forms - 教程
- ASP.NET Web Forms - HTML 页面
- ASP.NET Web Forms - 服务器控件
- ASP.NET Web Forms - 事件
- ASP.NET Web Forms - HTML 表单
- ASP.NET Web Forms - 维持 ViewState
- ASP.NET Web Forms - TextBox 控件
- ASP.NET Web Forms - Button 控件
- ASP.NET Web Forms - 数据绑定
- ASP.NET Web Forms - ArrayList 对象
- ASP.NET Web Forms - Hashtable 对象
- ASP.NET Web Forms - SortedList 对象
- ASP.NET Web Forms - XML 文件
- ASP.NET Web Forms - Repeater 控件
- ASP.NET Web Forms - DataList 控件
- ASP.NET Web Forms - 数据库连接
- ASP.NET Web Forms - 母版页
- ASP.NET Web Forms - 导航
- ASP.NET Web Forms - HTML 服务器控件
- ASP.NET CalendarDay 控件
- ASP.NET Web Forms - Web 服务器控件
- ASP.NET Web Forms - Validation 服务器控件
- ASP.NET Web 控件标准属性
- ASP.NET 控件标准属性
ASP.NET RadioButtonList RepeatDirection 属性
RadioButtonList 控件
定义和用法
RepeatDirection 属性用于获取或设置 RadioButtonList 中的项目是垂直显示还是水平显示。
语法
<asp:RadioButtonList RepeatDirection="mode" runat="server">
Some Content
</asp:RadioButtonList >
Some Content
</asp:RadioButtonList >
属性 | 描述 |
---|---|
mode | 规定 RadioButtonList 中项目的布局方向。 可能的值:
|
实例
下面的实例设置了 RadioButtonList 控件的 RepeatDirection:
<form runat="server">
<asp:RadioButtonList id="rb1"
runat="server" RepeatDirection="Horizontal">
Some content
</asp:RadioButtonList>
</form>
<asp:RadioButtonList id="rb1"
runat="server" RepeatDirection="Horizontal">
Some content
</asp:RadioButtonList>
</form>
RadioButtonList 控件
关注微信小程序
扫描二维码
程序员编程王