c注册用户窗口,如何将注册信息如账号密码写入数据库?
展开全部
protected void Button1_Click(object sender, EventArgs e)
{
if (Check(TextBox1.Text) || Check(TextBox2.Text) || Check(TextBox3.Text) ||
Check(TextBox4.Text) ) //判断
{
Label8.Text = "用户烂唯信息中不能够包含特殊字符如<,>,',//,\\等,请审核"; //输出信息
}
else
{
else
{
try
{
SqlConnection con =
new SqlConnection("server='(local)';database='Register';uid='sa';pwd='sa'"); //建立连接
con.Open(); //打开连接
string strsql =
"insert into register (username,password,QQ,Email) values
('" + TextBox1.Text + "','" + TextBox2.Text + "','" +
TextBox3.Text + "','" + TextBox4.Text + "',0)";
SqlCommand cmd = new SqlCommand(strsql,con); //创建执行
cmd.ExecuteNonQuery(); //执行SQL
Label8.Text = "注册成功,请牢记您的信息"; //提示成功
}
catch
{
Label8.Text = "出现错误信息,请返回给管理员"; //抛出异常
}
}
}
protected bool Check(string text) //判断实现
{
if (text.Contains("<") || text.Contains("此销>") || text.Contains("'") ||
text.Contains("//") || text.Contains("\\")) //检查字串
{
return true; //返回真
}
else
{
return false; //返回假
}
}
检测注册名重复的代码:
string check = "select * from register where username='" + TextBox1.Text + "'";
SqlDataAdapter da = new SqlDataAdapter(check,con); //创建适森历游配器
DataSet ds = new DataSet(); //创建数据集
da.Fill(ds, "table"); //填充数据集
if (da.Fill(ds, "table") > 0) //判断同名
{
Label8.Text = "注册失败,有相同用户名"; //输出信息
}
else
{
SqlCommand cmd = new SqlCommand(strsql, con); //创建执行对象
cmd.ExecuteNonQuery(); //执行SQL
Label8.Text = "注册成功,请牢记您的信息"; //输出成功
}
{
if (Check(TextBox1.Text) || Check(TextBox2.Text) || Check(TextBox3.Text) ||
Check(TextBox4.Text) ) //判断
{
Label8.Text = "用户烂唯信息中不能够包含特殊字符如<,>,',//,\\等,请审核"; //输出信息
}
else
{
else
{
try
{
SqlConnection con =
new SqlConnection("server='(local)';database='Register';uid='sa';pwd='sa'"); //建立连接
con.Open(); //打开连接
string strsql =
"insert into register (username,password,QQ,Email) values
('" + TextBox1.Text + "','" + TextBox2.Text + "','" +
TextBox3.Text + "','" + TextBox4.Text + "',0)";
SqlCommand cmd = new SqlCommand(strsql,con); //创建执行
cmd.ExecuteNonQuery(); //执行SQL
Label8.Text = "注册成功,请牢记您的信息"; //提示成功
}
catch
{
Label8.Text = "出现错误信息,请返回给管理员"; //抛出异常
}
}
}
protected bool Check(string text) //判断实现
{
if (text.Contains("<") || text.Contains("此销>") || text.Contains("'") ||
text.Contains("//") || text.Contains("\\")) //检查字串
{
return true; //返回真
}
else
{
return false; //返回假
}
}
检测注册名重复的代码:
string check = "select * from register where username='" + TextBox1.Text + "'";
SqlDataAdapter da = new SqlDataAdapter(check,con); //创建适森历游配器
DataSet ds = new DataSet(); //创建数据集
da.Fill(ds, "table"); //填充数据集
if (da.Fill(ds, "table") > 0) //判断同名
{
Label8.Text = "注册失败,有相同用户名"; //输出信息
}
else
{
SqlCommand cmd = new SqlCommand(strsql, con); //创建执行对象
cmd.ExecuteNonQuery(); //执行SQL
Label8.Text = "注册成功,请牢记您的信息"; //输出成功
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询