creating a radiobutton control in vb.net

Posted by reffer on Stack Overflow See other posts from Stack Overflow or by reffer
Published on 2010-03-15T18:55:46Z Indexed on 2010/03/15 18:59 UTC
Read the original article Hit count: 574

Filed under:
|
|

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

© Stack Overflow or respective owner

Related posts about radiobutton

Related posts about vb.net