ASP.NET 里如何将性别用SQL语句传入数据库。这个性别选择是用radiobutton做的。

2025-01-05 08:29:43
推荐回答(3个)
回答1:

先定义一个变量存放判断radiobutton后的值,假如变量名为sex
if( radiobutton1.checked ) { sex = '1'; } else if (radiobutton2.checked) { sex = '2'; }
再将变量带到SQL语句中就可以了阿,如
sqlcmd.commandtext = "update table1 set sex = '" + sex +"' where name = 'xxxx' ";

回答2:

男的设置为1,女的设置为2不就行了么。

回答3:

if(radiobutton_man.checked)
{
tempstring="男";
}
else
{
tempstring="女";
}
再将tempstring传进去就行了