当前位置: 首页 > 图文教程 > 网络编程 > ASP > 如何使用 Microsoft Access 和 Active Server Pages 加密你的页面

ASP
ASP讲座之六:ASP与数据库(一)
ASP讲座之七:ASP与数据库(二)
ASP讲座之八:ASP与数据库(三)
ASP讲座之九:ASP与数据库(四)
ASP讲座之十:自己动手编写组件
ASP讲座之十一:结束语:给您一些建议
ASP实用大全-ASP基础(1)
ASP实用大全-ASP基础(2)
ASP实用大全-ASP基础(3)
ASP实用大全-ASP基础(4)
ASP实用大全-ASP基础(5)
ASP实用大全-ASP对象(1)
ASP实用大全-ASP对象(2)
ASP实用大全-ASP对象(3)
ASP实用大全-ASP对象(4)
ASP实用大全-ASP对象(5)
ASP实用大全-ASP对象(6)
ASP实用大全-ASP服务器组件(1)
ASP实用大全-ASP服务器组件(2)
ASP实用大全-ASP服务器组件(3)

ASP 中的 如何使用 Microsoft Access 和 Active Server Pages 加密你的页面


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 183 ::
收藏到网摘: n/a

    这是一个非常简单的加密程序,大家自己看看!
<%
userid = Request("userid")
userpass = Request("userpass")

Set conn = Server.CreateObject("ADODB.Connection")
DBPath = Server.MapPath("userinfo.mdb")
conn.Open "driver={Microsoft Access Driver (*.mdb)};dbq=" & DBPath

userid=trim(userid)
userpass=trim(userpass)
sql="select * from [userinfo]"
set Rs=Conn.execute(sql)
while not (Rs.bof or Rs.eof )
if userid=trim(Rs("用户名")) and userpass=trim(Rs("密码")) then
flag = "1"
end if
Rs.movenext()
wend
if flag = "1" then
Rs.close()
else
Rs.close()
Response.Write "<center>对不起,此用户不存在或密码不正确,请重试!</center><p align='center'><a href='javascript:history.go(-1);'>点这里回上一页!</a>"
Response.End
End If
conn.close
%>