question about asp:RadioButtonList

  • Thread starter Thread starter Utada P.W. SIU
  • Start date Start date
U

Utada P.W. SIU

<asp:RadioButtonList></asp:RadioButtonList>

only allow create a vertical radion button list

how can I use it to create a horizatial radio button list?

thanks~
 
I believe you are looking for the RepeatDirection property try setting it
to Horizontal.

Other properties of interest might be RepeatColumns (how many columns to use
before wrapping to the next line) and RepeatLayout (table or flow) to
control how the radiolist is generated (in a table or using span's
respectively)

Karl
 
Use

RadioButtonList1.RepeatDirection = RepeatDirection.Horizontal



Juan T. Llibre
ASP.NET MVP
===========
 
Back
Top