用C#语言,做Windows应用程序,如何把CheckBox的值添加到数据库中
展开全部
例如你有四个CheckBox,其中有两个被选中
此代码为方便调试手动指定了CheckBox的
Checked 和Text属性
string[] sqlcommandtext=new string[5] ;
CheckBox cb = new CheckBox();
CheckBox cb1 = new CheckBox();
CheckBox cb2 = new CheckBox();
CheckBox cb3 = new CheckBox();
CheckBox cb4 = new CheckBox();
cb.Text = "ss";
cb1.Text = "ss1";
cb2.Text = "ss2";
cb3.Text = "ss3";
cb4.Text = "ss4";
cb.Checked = true;
cb4.Checked = true;
cb2.Checked = false;
if (cb.Checked)
{
sqlcommandtext[0] = cb.Text;
}
if (cb1.Checked)
{
sqlcommandtext[1] = cb1.Text;
}
if (cb2.Checked)
{
sqlcommandtext[2] = cb2.Text;
}
if (cb3.Checked)
{
sqlcommandtext[3] = cb3.Text;
}
if (cb4.Checked)
{
sqlcommandtext[4] = cb4.Text;
}
string sql="";
for (int i = 0; i < 5; i++)
{
if (sqlcommandtext[i]==null)
{
continue;
}
sql += sqlcommandtext[i]+",";
}
int oo = sql.Length - 1;
sql=sql.Remove(oo);
最后的Remove为删除字符串最后的‘,’号
然后可调用数据类操作数据库
把sql作为值插入
取出数据的时候只要通过string的Split()方法截断字符串就行了
此代码为方便调试手动指定了CheckBox的
Checked 和Text属性
string[] sqlcommandtext=new string[5] ;
CheckBox cb = new CheckBox();
CheckBox cb1 = new CheckBox();
CheckBox cb2 = new CheckBox();
CheckBox cb3 = new CheckBox();
CheckBox cb4 = new CheckBox();
cb.Text = "ss";
cb1.Text = "ss1";
cb2.Text = "ss2";
cb3.Text = "ss3";
cb4.Text = "ss4";
cb.Checked = true;
cb4.Checked = true;
cb2.Checked = false;
if (cb.Checked)
{
sqlcommandtext[0] = cb.Text;
}
if (cb1.Checked)
{
sqlcommandtext[1] = cb1.Text;
}
if (cb2.Checked)
{
sqlcommandtext[2] = cb2.Text;
}
if (cb3.Checked)
{
sqlcommandtext[3] = cb3.Text;
}
if (cb4.Checked)
{
sqlcommandtext[4] = cb4.Text;
}
string sql="";
for (int i = 0; i < 5; i++)
{
if (sqlcommandtext[i]==null)
{
continue;
}
sql += sqlcommandtext[i]+",";
}
int oo = sql.Length - 1;
sql=sql.Remove(oo);
最后的Remove为删除字符串最后的‘,’号
然后可调用数据类操作数据库
把sql作为值插入
取出数据的时候只要通过string的Split()方法截断字符串就行了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询