回 帖 发 新 帖 刷新版面

主题:[讨论]急...大家进来帮我一下

SqlConnection myconnection = new SqlConnection("server=FISH;database=yang;uid=sa;pwd=yang;");
                myconnection.Open();
                String SqlConn = "select * from users where UserID=" + "'" + username.Text + "'";
                SqlCommand mycommand = new SqlCommand(SqlConn, myconnection);
                SqlDataReader myreader = mycommand.ExecuteReader();
                myreader.Read();
                
                
                
                if (myreader["Pwd"].ToString()==password1.Text)
        {....}
    为什么if里进不去啊!if是只能用bool类型的,可是我就是不知道怎么办了!

回复列表 (共3个回复)

沙发

你调试一下,看看myreader["Pwd"]是什么内容

板凳

★有软件编程问题的请进!
陈念东:http://blog.csdn.net/boygirlboy
孙志丹:http://blog.csdn.net/lifegood08
何  超:http://blog.csdn.net/heaven_pl
杨红金:http://blog.csdn.net/yangedu
赵  健:http://blog.csdn.net/jonnie4455
李文杰:http://blog.csdn.net/lwjjie
邵  平:http://blog.csdn.net/shaopingnj
刘洪浩:http://blog.csdn.net/liaoliao2008
程  钢: http://blog.csdn.net/codercheng
稂  顾: http://blog.csdn.net/mengyuxiang
    欢迎进入各老师博客了解相关计算机知识。互相学习,共同进步!有问题可以咨询老师!

3 楼

String SqlConn = "select * from users where UserID=" + "'" + username.Text + "'";
改成
  String SqlConn = "select * from users where UserID='" + username.Text + "'";
试一下

我来回复

您尚未登录,请登录后再回复。点此登录或注册