[转载]ASP实现简单的网页保护
当前位置:点晴教程→知识管理交流
→『 技术文档交流 』
主要使用request对象的servervariables属性,通过它来获得环境变量的值。使用的语法为:request.servervariables(variable),“variable”表示环境变量的名称,如服务器主机名称、web服务器软件名等等,若“variable”为“remote_addr”则表示访问者的ip地址,通过它就可以实现ip地址的过滤。 [br] 源程序如下:(文件名:demo.asp) [br][br] <html> [br] <head> [br] <meta http-equiv=“content-type” content=“text/html; charset=gb_2312-80”> [br] <meta name=“generator” content=“microsoft frontpage express 2.0”> [br][br] <style> [br] <!-- [br] .as{ line-height: 15px; font-size: 14px } [br] a:hover {color: rgb(0,51,240);text-decoration:underline} [br] .p9 { font-family: “宋体”; font-size: 14px; line-height: 15pt} [br] .p12 { font-family: “宋体”; font-size: 12pt; line-height: 18pt} [br] a:link { text-decoration: none;} [br] a:visited { text-decoration:none;} [br] a:hover {text-decoration: underline;font-size: 125%;color:blue} [br] --> [br] </style> [br][br] <title>asp页面防火墙功能演示</title> [br] </head> [br][br] <body background=“back.jpg”> [br] <% [br] ′使用request.servervariables(“remote_addr”)得到ip地址并保存在变量rip中 [br] rip=request.servervariables(“remote_addr”) [br] strip=cstr(rip) [br] ′取得ip地址第三个段的值并保存到strip中 [br][br] for i=1 to 2 [br] strip=right(strip,len(strip)-instr(1,strip,“.”)) [br] next [br][br] strip=left(strip,instr(1,strip,“.”)-1) [br] ′ip地址有效性检验及密码验证,包括两方面的内容: [br] ′如果ip地址符合则通过验证;如果ip地址不符合则检验输入的密码是否正确(此处密码为“asp”) [br] if (left(rip,5) <> “127.1” or strip<“1” or strip>“50”) and request(“passwd”)<>“asp” then [br] %> [br] <p><font color=“#ff0000”>对不起,你的ip是<%=rip%>,本页面可以访问的ip是127.1.1.*到127.1.50.*之间,如果你是本单位内部网的用户,请确认你的浏览器没有使用代理!<br></font></p> [br][br] <form action=“demo.asp” method=“post” id=form1 name=form1> [br] <p>请输入访问密码:<input type=“password” name=“passwd” > <input type=“submit” value=“确认” name=“b1”>; [br] </p> [br] </form> [br][br] <%else %> [br] ′合法用户可以访问的页面,在此可以加入任何信息 [br] 祝贺您,您已经顺利通过了页面的安全认证,可以直接使用本站点的资源! [br] <%end if%> [br] </body> [br] </html> [br][br] 实际使用只要稍微修改上面的程序(如ip地址等信息)就可以了,当然这只是在一个页面中实现了安全防范功能,如果一个网站有多个页面的话,可以设置一个session变量来对用户进行标志,以在后面的页面中进行判断。
该文章在 2010/6/7 23:50:46 编辑过 |
关键字查询
相关文章
正在查询... |