How to use the radio buttons?
Hi,
I have 2 radio buttons, radMale and radFemale. The problem is both radio buttons can be checked when I run it. I'm using Visual Studio.Net 2003. Can anyone advice me on the correct code? Thanks for the help!
the code which I had tried but don't work:
if radMale .checked = true
radFemale.checked = false
else
if radFemale.checked = true
radMale.checked = false
|