2014/09/14

ASP.Net RadioButtonList 設定垂直或水平

RadioButtonList預設為垂直的方式呈現,如果想要改為水平可以透過RepeatDirection這個屬性去調整


<asp:RadioButtonList ID="RadioButtonList1" runat="server" RepeatDirection="Horizontal" >
 ...
</asp:RadioButtonList>



參考資料:
http://msdn.microsoft.com/zh-tw/library/y837ez6f(v=vs.100).aspx