[求助]登入问题
小弟做一个登入界面,登入成功后运行另一个窗体,不成功则停留在这个窗体,现在做到这样,SqlConnection thisConnection=new SqlConnection(@"Data Source=(local);Integrated Security=SSPI;"+"Initial Catalog=student");
thisConnection.Open();
SqlCommand cmd=new SqlCommand("select Count(*) from userpass where userid='"+this.TextBox1.Text+"' and Password='"+this.TextBox2.Text+"'",thisConnection);
int count=Convert.ToInt32(cmd.ExecuteScalar());
thisConnection.Close();
中间应该添加什么啊
高手请指教