views:

76

answers:

2

I have a RadioButtonList on my .aspx page and I load it in the codebehind.

How can I have it show vertically?

+5  A: 
RepeatDirection=Vertical
Robin Day
+2  A: 

Change the RepeatDirection to Vertical. You might also want to look at using RepeatLayout=Flow if you have problems getting it to render the way you want. Often, I'll use RepeatLayout=Flow and assign a CssClass to handle styling.

tvanfosson