您的当前位置:教程首页 --> ASP教程 --> XML相关 --> 如何使用 Microsoft Access 和 Active Server Pages 加密你的页面

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

发布时间:2009/06/15  来源:网络  点击次数:338次
这是一个非常简单的加密程序,大家自己看看!
<%
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
%>

站长QQ:28212441

太仓交友 张家界会议网 齐齐商务  直流电机维修 

Copyright © 2007 www.herecn.com! company. All rights reserved.

苏ICP备09011162号