未将对象引用设置到对象实例问题
private void button1_Click(object sender, EventArgs e){
string username = name.Text;
string password = pass.Text;
string strsql = string.Format("select * from admin where username='{0}'and password='{1}'", username, password);
SqlCommand cmd = new SqlCommand(strsql, DBHelper.Connection);
DBHelper.Connection.Open();
int result = (int)cmd.ExecuteScalar();
if (result == 1)
{
MessageBox.Show("验证通过欢迎回来", "操作提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
Form1 form1 = new Form1();
form1.Show();
this.Visible = false;
}
else
{
MessageBox.Show("输入的用户名或密码错误!", "操作结果", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
我想请教大虾们。。这段代码哪里写错了。。。。怎么调试的时候出现。。如下。图所示在蓝色那段代码出了问题。。。到底什么问题请大虾们说明白点。。。我是菜鸟! 我这段代码主要是登陆界面用的。