注册连接数据

来源:互联网 发布:通信网络建设与维护 编辑:程序博客网 时间:2024/05/19 02:41
try
   {
    string xingbie;
    if(RadioButton1.Checked ==true)
    {xingbie="男";}
    else{xingbie="女";}
    SqlConnection cn = new SqlConnection();
    cn.ConnectionString ="Data Source = 405-22;database = bbs_data;uid = sa;pwd=";
    SqlCommand com = new SqlCommand();
    string a = "insert user_info (userID,userPWD,xingbie,shengri,email,qq) values ('"+TextBox1.Text+"','"+TextBox2.Text+"','"+xingbie+"','"+TextBox6.Text+"','"+TextBox4.Text+"','"+TextBox5.Text+"')";
    com.CommandText = a;
    com.Connection = cn;
    cn.Open();
    int i=com.ExecuteNonQuery();
    cn.Close();
   }
   catch(SqlException ex)
   {
    Response.Write(ex.Message);
   }
   Response.Redirect("lt_back.aspx");
  }