2011-01-08 19 views

答えて

1
RadioButtonList rbl = new RadioButtonList(); 
rbl.RepeatDirection = RepeatDirection.Vertical; 
+0

var rbl = new RadioButtonList(){RepeatDirection = RepeatDirection.Vertical}; :) –

0

RepeatDirectionをVerticalに設定してRadioButtonListコントロールを使用できます。
これが不可能な場合は...

順序付きリスト(OL要素)または順序付けられていないリスト(UL)に追加します。

0

可能な二つの方法:

  • は、いくつかのCSSクラスを与え、あなたのCSSのものにコンテナとして、そのクラスに

    display:block;

  • 使用RadioButtonListコントロールのようないくつかのスタイルを与えますラジオボタン。 "RepeatDirection"プロパティを "Vertical"に設定します。

関連する問題