String userName = textBox1.Text;//用戶名
創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、禹城網(wǎng)絡(luò)推廣、重慶小程序開(kāi)發(fā)、禹城網(wǎng)絡(luò)營(yíng)銷、禹城企業(yè)策劃、禹城品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供禹城建站搭建服務(wù),24小時(shí)服務(wù)熱線:13518219792,官方網(wǎng)址:www.cdcxhl.com
String userPw = textBox2.Text;//密碼
string connString = @"Data Source=ASUS\SQLEXPRESS;Initial Catalog=StudentScore;Integrated Security=True";
SqlConnection conn = new SqlConnection(connString);
string sql = String.Format("select count(*) from [user] where UserName='{0}'and Password='{1}'", userName, userPw);
try
{
conn.Open();// 打開(kāi)數(shù)據(jù)庫(kù)連接
SqlCommand comm = new SqlCommand(sql, conn);//創(chuàng)建 Command 對(duì)象
int n = (int)comm.ExecuteScalar();//執(zhí)行查詢語(yǔ)句,返回匹配的行數(shù)
if (n==1)
{
Console.WriteLine("----->" + userName + " " + userPw + "登陸成功");
this.DialogResult = DialogResult.OK;
this.Tag = true;
Form2 f2 = new Form2();
f2.Show();
this.Hide();
}
else
{
MessageBox.Show("用戶名或者密碼錯(cuò)誤", "登錄失敗",
MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
this.Tag = false;
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "操作數(shù)據(jù)庫(kù)出錯(cuò)!",
MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
this.Tag = false;
}
finally
{
conn.Close();// 關(guān)閉數(shù)據(jù)庫(kù)連接
}