string connectString="workstation id=MYPC;packet size=4096;integrated security=SSPI;data source=MYPC;persist security info=True;initial catalog=hf";conn=new SqlConnection(connectString);SqlConnection conn=new SqlConnection(connectString);conn.Open();SqlCommand command=new SqlCommand("select * from where name='111' and pass='111'",conn);SqlDataReader reader=command.ExecuteReader();if(reader.Read())
    {
Label1.Text ="111";
     }
 else
     {
Label1.Text ="121";
      }用户 'MYPC\ASPNET' 登录失败。 
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。 异常详细信息: System.Data.SqlClient.SqlException: 用户 'MYPC\ASPNET' 登录失败。源错误: 
行 104: //SqlConnection conn=new SqlConnection(connectString);
行 105: //conn.Open();
行 106: sqlConnection1.Open(); ==============(红色的)
行 107: SqlCommand command=new SqlCommand("select * from where name='111' and pass='111'",sqlConnection1);
行 108: SqlDataReader reader=command.ExecuteReader();