![]() |
#2
冰彩虹2008-02-19 23:18
|
int Check=0;
默认RadioButton1是选中的,RadioButton1值为0
protected void RadioButton2_CheckedChanged(object sender, EventArgs e)
{
if (RadioButton2.Checked)
{
Check = 1;
}
}
数据也插入成功了,可是查询表中的记录的时候RadioButton一直都是1了??无论我选中哪个都是一样的结果了
这个问题怎么解决了??