C
Claudia Fong
Hi
I have two radio button in my webform. One fo them is selected by
default.
I wrote some simple c# code like this below:
protected void rdoLoad_CheckedChanged(object sender, EventArgs e)
{
if (rdoLoad.Checked == true)
MessageBox.Show("testing OK");
}
But when I was testing, even if I select the other radio button
(rdoLoad), it won't show the message box..
What should I do?
Do I need to write something in my source file of my ASP.NET?
Cheers!
Claudi
I have two radio button in my webform. One fo them is selected by
default.
I wrote some simple c# code like this below:
protected void rdoLoad_CheckedChanged(object sender, EventArgs e)
{
if (rdoLoad.Checked == true)
MessageBox.Show("testing OK");
}
But when I was testing, even if I select the other radio button
(rdoLoad), it won't show the message box..
What should I do?
Do I need to write something in my source file of my ASP.NET?
Cheers!
Claudi