you can have the page postback by setting AutoPostBack="true" and
OnSelectedIndexChanged="rdo_SelectedIndexChanged"
in the server side function rdo_SelectedIndexChanged check the current value
of the radiobutton and then set the Enabled property of the checkbox to true
or false
HTH
--
Swanand Mokashi
Microsoft Certified Solution Developer (.NET) - Early Achiever
Microsoft Certified Application Developer (.NET)
http://www.dotnetgenerics.com/
DotNetGenerics.com -- anything and everything about Microsoft .NET
technology ...
http://www.swanandmokashi.com/
http://www.swanandmokashi.com/HomePage/WebServices/
Home of the Stock Quotes, Quote of the day and Horoscope web services
"Web learner" <> wrote in message
news:...
>I have to have three RadioButtons and then under one of this RadioButton, I
>need to put two checkboxes. Something like following:
>
> O Temperature
> [] Air
> [] Water
> O Radiaton
> O Wind Velocity
>
> The child CheckBoxes (Air and Water in above example) should become
> "activated" only when the parent RadioButton (Temperature in above
> example) is selected. I am just confused how to get this done.
>
> Any example in this regard will be gratefully appreciated.
>
> web_learner
>
>