Foxtable(狐表)用户栏目专家坐堂 → [求助]什么鬼?昨天测试还好好的


  共有2180人关注过本帖树形打印复制链接

主题:[求助]什么鬼?昨天测试还好好的

帅哥哟,离线,有人找我吗?
狐狸爸爸
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:管理员 帖子:47497 积分:251403 威望:0 精华:91 注册:2008/6/17 17:14:00
  发帖心情 Post By:2015/7/11 11:22:00 [显示全部帖子]

提示密码不正确,这种问题,应该你自己调试,密码正确与否,计算机是不会撒谎的。

Dim UserName As String = e.Form.Controls("UserName").Value
Dim cmd As New SQLCommand
Dim dt As DataTable
Dim dr As DataRow
cmd.C
If UserName = ""  Then
    Messagebox.show("请选择用户!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
    Return
End If
cmd.CommandText = "Select * Fr om {Users} Where [Name] = '" & UserName & "'"
dt = cmd.ExecuteReader
If dt.DataRows.Count = 0 Then
    Messagebox.show("此用户不存在!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
    Return
End If
dr = dt.DataRows(0)
MessageBox.show(e.Form.Controls("PassWord").Value)
MessageBox.show(dr("Password") )
If e.Form.Controls("PassWord").Value = dr("Password") Then
    _UserName = UserName
    _UserGroup = dr("Group")
   ' cmd.CommandText = "UPD ATE {Users} SET 登陆次数 =" & dr("登陆次数")+1 & " WH ERE  Name ='" &  _UserName & "'"
    e.Form.Close
    If cmd.ExecuteNonQuery = 1 Then '返回1表示增加成功
        'Vars("隐藏") = "False"
        'Dim frm As WinForm.Form
        'frm = Forms("用户列表")
        'frm.Open(SysInfo.ScreenWidth-300, SysInfo.ScreenHeight-600)
        '        
    End If
Else
    Messagebox.show("密码错误!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
End If

 回到顶部
帅哥哟,离线,有人找我吗?
狐狸爸爸
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:管理员 帖子:47497 积分:251403 威望:0 精华:91 注册:2008/6/17 17:14:00
  发帖心情 Post By:2015/7/11 11:23:00 [显示全部帖子]

原因:
http://www.foxtable.com/help/topics/0751.htm
http://www.foxtable.com/help/topics/0750.htm

 回到顶部