标题:请教高手代码问题,多谢!
只看楼主
TONGTONGYANG
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2012-10-13
结帖率:100%
已结贴  问题点数:20 回复次数:1 
请教高手代码问题,多谢!
<%
sub ChkLogin()
Dim c,u
Dim i,k
Dim b
Dim sb
Dim Conn
sb=request("tishi")
 Set conn = Server.CreateObject("ADODB.Connection")
  conn.Open "driver={Microsoft Access Driver (*.mdb)};dbq=" & Server.MapPath("denglu.mdb")
set rs=conn.execute("Select username,password from [user] where username='"&request("username")&"' ")
If rs.bof and rs.eof then
  response.write "对不起,你不是该系统用户"
    response.end
Else
    c=rs("password")
    u=rs("username")
End If
set rs=nothing
ch=""
k=Len(c)
Response.write("用户"+u+"密码"+c)
'Response.end
For i=1 To k
    b=c Mod 10
    c=c\10
    if b=0 then
       t=Mid(sb,10,1)
    else
      t=Mid(sb,b,1)
    End if
    ch=t+ch
   session("p")=session("p")+1
   If request("password")=ch Then
      response.write"登录成功"
   Else
     If session("p")=3 Then
       response.write" 对不起,您不是该系统的用户。"
       'main
       response.end
     End If
     response.write"密码错误,请重新输入"
     response.end
   End If
Next
end sub

%>
主要为红色代码部分不能执行,请问这段代码意思?多谢高手!
搜索更多相关主题的帖子: where request password Microsoft 系统 
2012-10-13 22:25
yms123
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:209
帖 子:12488
专家分:19042
注 册:2004-7-17
得分:20 
不明白对密码取余数做什么?
2012-10-14 00:08



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-383133-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015244 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved