Foxtable(狐表)用户栏目专家坐堂 → [讨论]自定义用户登录加密问题


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

主题:[讨论]自定义用户登录加密问题

帅哥哟,离线,有人找我吗?
静听枫雨
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:童狐 帖子:255 积分:2152 威望:0 精华:0 注册:2013/6/8 22:41:00
[讨论]自定义用户登录加密问题  发帖心情 Post By:2017/5/31 13:54:00 [只看该作者]

请教:下面的代码,把加密代码:password = MD5Encrypt("password") 放在什么 地方

Dim UserName As String = e.Form.Controls("UserName").Value
Dim
dr As DataRow
If
UserName = ""  Then
    Messagebox.show(
"
请选择用户!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
   
Return

End
If
dr
= _UserTable.SQLFind("[Name] = '" & UserName & "'")
If
dr Is Nothing Then
    Messagebox.show(
"
此用户不存在!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)
   
Return

End
If
If
e.Form.Controls("PassWord").Value = dr("Password") Then
    _UserName = UserName
    _UserGroup = dr("Group")
   
e.Form.Close
Else

    Messagebox.show("密码错误!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information)

End
If


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


加好友 发短信
等级:超级版主 帖子:13837 积分:69650 威望:0 精华:0 注册:2016/11/1 14:42:00
  发帖心情 Post By:2017/5/31 14:05:00 [只看该作者]

 

If e.Form.Controls("PassWord").Value = dr("Password") Then

 

改成

 

If dr("Password") = MD5Encrypt(e.Form.Controls("PassWord").Value) Then


 回到顶部
帅哥哟,离线,有人找我吗?
静听枫雨
  3楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:童狐 帖子:255 积分:2152 威望:0 精华:0 注册:2013/6/8 22:41:00
  发帖心情 Post By:2017/5/31 14:14:00 [只看该作者]

多谢版主!

 回到顶部