本文介绍了将单选按钮值插入sqlserver数据库。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有两个RadioButtons( MaleRB
和 FmaleRB
)在我的数据库中我有两列男性
和女性
,如果我选择 MaleRB
,它应该更新为我的数据库中有1个,即男性
列,女性栏目和副词中有0个。
任何人都可以帮忙请告诉我。
I have two RadioButtons(MaleRB
and FmaleRB
) And in my data base I have two column Male
and female
, If I select MaleRB
, It should get updated as 1 in my database ie, in Male
column and 0 in Female column And Viceversa.
Can any one help me out please.
推荐答案
if(MaleRB .Checked== "1")
SqlDataSource1.UpdateParameters[0].DefaultValue = "True";
else
SqlDataSource1.UpdateParameters[0].DefaultValue = "False";
string rbValue;
if (MaleRb.Checked == true)
{
rbValue = "1";
mycommand.Parameters.AddWithValue("@Gender", rbValue);
}
if (FmaleRb.Checked == true)
{
rbValue = "0";
mycommand.Parameters.AddWithValue("@Gender", rbValue);
}
可以使用此解决您的问题
Can solve your problem using this
这篇关于将单选按钮值插入sqlserver数据库。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!