RadioButton not an RadioButtonList
-
I have two Radiobutton if (RadioButton1.Checked==true) { RadioButton2.Checked=false; } else if(RadioButton2.Checked==true) { RadioButton1.Checked=false; } when i run this pgm both the radiobutton is checked...I need to check it optionally....Please do needfull...
With Regards, Samson
-
I have two Radiobutton if (RadioButton1.Checked==true) { RadioButton2.Checked=false; } else if(RadioButton2.Checked==true) { RadioButton1.Checked=false; } when i run this pgm both the radiobutton is checked...I need to check it optionally....Please do needfull...
With Regards, Samson
Here u are missing somecode..
samsonx wrote:
have two Radiobutton if (RadioButton1.Checked==true) { RadioButton2.Checked=false; } else if(RadioButton2.Checked==true) { RadioButton1.Checked=false; }
write this on RadioButton1's click event write. RadioButton2.Checked=false; And on RadioButton2's click event write. RadioButton1.Checked=false; hope it will help.
Thanks, Sun Rays
-
I have two Radiobutton if (RadioButton1.Checked==true) { RadioButton2.Checked=false; } else if(RadioButton2.Checked==true) { RadioButton1.Checked=false; } when i run this pgm both the radiobutton is checked...I need to check it optionally....Please do needfull...
With Regards, Samson