以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 手机版改成数据库读取用户名和密码 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=109454) |
-- 作者:有点甜 -- 发布时间:2017/11/12 19:55:00 -- 1、登陆页面
http://www.foxtable.com/mobilehelp/scr/0138.htm
2、修改页面判断代码
Dim fdr As Datarow = DataTables("用户表").SqlFind("用户名 = \'" & userName & "\'") If fdr IsNot Nothing AndAlso fdr("密码") = password Then Verified = True End If |