up vote 0 down vote favorite
share [g+] share [fb]

ok this is my code in vb.net behind where i am creating the radiobutton -

 TD = New HtmlTableCell
                Dim rdb As New RadioButton()
                rdb.ID = "rdb_ads_" & DR("ID")
                TD.Controls.Add(rdb)
                TR.Cells.Add(TD)

It displays the radiobutton, but doesnt select single. i can select all at one time. how do i make it to select only 1 at a time. i know its basic for u guys, but will help me a lot

link|improve this question
feedback

1 Answer

You need to add the radiobutton to a radio button list control, otherwise you are telling your web form / client form that it doesn't belong to a control list and it is just a radio button sitting on a form.

  Dim rl As New RadioButtonList
        Dim r As New RadioButton
        r.ID = "111"
        rl.Controls.Add(r)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.