When I set up a RadioButtonList it creates a table layout for it and I don’t want this… how do I get rid of it?
It might be a duplicate but I’ve searched and haven’t manage to find a question like this here.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’ll have to change the
RepeatLayoutproperty and setting it toFlowwill probably yield the result you are searching for.Take a look at all the other
RepeatLayoutoptions here:http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.repeatlayout.aspx
Kinda silly the 4.0 framework still defaults the ugly table variant, I mostly revert to the
UnorderedListvariant.