c#登录界面代码 c#登录界面设计

private void button1_Click(object sender, EventArgs e)
{
stringsqlstring = "database=students_info;Trusted_Connection=yes;";
SqlConnection a = new SqlConnection(sqlstring);
a.Open();
SqlCommand b= new SqlCommand("select * from [students2] where id='" +this.textBox1.Text + "'", a);
SqlDataReader c = b.ExecuteReader();
if(!c.Read())
{
MessageBox.Show("没有此用户!");
c#登录界面代码 c#登录界面设计
c.Close();
return;
}

if (this.textBox2.Text != c["name"].ToString())
{
MessageBox.Show("错误");

}
else
{
MessageBox.Show("正确");
}
c.Close();
}
编程很难搞,是吧!

  

爱华网本文地址 » http://www.aihuau.com/a/25101011/43071.html

更多阅读

ui的设计教程 qt ui界面设计教程

ui的设计教程——简介 其实,我也是个初学者,这里分享下我学习的经验。请不要把这当做能够使你直接成为大师的作品。目前我学习的是VS和Android进行设计。ui的设计教程——方法——androidui的设计教程 1、 下图是我刚刚学的时候所使

c#登录界面代码 c#登录界面设计

private void button1_Click(object sender, EventArgs e){ stringsqlstring = "database=students_info;Trusted_Connection=yes;";SqlConnection a = new SqlConnection(sqlstring);a.Open(); SqlCommand b= new SqlCommand("sele

声明:《c#登录界面代码 c#登录界面设计》为网友滾尔媽悳情分享!如侵犯到您的合法权益请联系我们删除