radio button list

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vjainpee
    New Member
    • Apr 2008
    • 9

    radio button list

    Hi All,
    I m new to asp.net

    I want to use radio button list horrizotaly means, options should be displayed horizaotaly , not verticaly
    is it possible

    Please give oncy c# example

    Please Help
    Thanks in advance
  • Curtis Rutland
    Recognized Expert Specialist
    • Apr 2008
    • 3264

    #2
    There is an attribute for RadioButtonList s called RepeatDirection . Change this in your .aspx page.
    Code:
    <asp:RadioButtonList RepeatDirection="horizontal" runat="server" ID="rbl1">
    There is also an attribute called RepeatColumns, which will control how many columns there are until it goes to the next line.

    Originally posted by vjainpee
    Please give oncy c# example
    This is an extremely negative attitude to have. VB.NET and C# use mostly the same objects. The only difference is syntax, and it's not that difficult to translate from one to another. There are many people here who have great knowledge and experience in VB.NET, and can help you, but you may have to do a little work and translate it yourself.

    Comment

    Working...