RadioButtonList

  • Thread starter Thread starter Michelle C
  • Start date Start date
M

Michelle C

Hello I am new to this please forgive me if I dont explain this right
but here goes, I hope you can help.

I am building a site and on one of the pages I have Radiobutton List
page. I am useing Visual Studio C# and I want to put the text for the
buttons under them instead of on either side..

If anyone knows how I might do that in the VStudio I would appreciate
it,

Thanks Sincerely,
Michelle

*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!
 
Michelle C said:
Hello I am new to this please forgive me if I dont explain this right
but here goes, I hope you can help.

I am building a site and on one of the pages I have Radiobutton List
page. I am useing Visual Studio C# and I want to put the text for the
buttons under them instead of on either side..

You might need to subclass the radiobutton.
Or you can set the text of the radiobutton to "" and have a label underneath
with the text.
Or you can create a custom control with a radiobutton with the text set to
"" and a label underneath where you display the text.

HTH
JB
 
Back
Top