Sorry about that, this is more of a WinForms than Web group so
RadiobuttonList wasn't in my vocabulary (until now) and I took "radiobutton
list" to be a list of... well anyway.
RadiobuttonList is inherited from ListControl.
Both have a property Items which is a ListItemCollection
ListItems have the Text property that you're after.
I'm not sure if you're aware of it, but you've answered yourself in your
question!!
RadioButtonList1.Items(0).Text = "me me me"
RadioButtonList1.Items(1).Text = "No it is me"
RadioButtonList1.Items(2).Text = "No, I'm the one"
Regards
Cor
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.