如何验证IP地址?
sub chkip(boardid)
dim rsip
dim iparr
dim ignored
dim i
dim ip
dim sql
ip=request.servervariables("remote_addr")
ignored=false
if not isempty(boardid) then
sql="select ignoreip from board where boardid="&cstr(boardid)
set rsip=conn.execute(sql)
if not (rsip.eof and rsip.bof) then
if instr(cstr(rsip("ignoreip")&""),chr(13)&chr(10)) then
iparr=split(rsip("ignoreip"),chr(13)&chr(10))
for i=0 to ubound(iparr)
if trim(iparr(i))<>"" and left(ip,len(trim(iparr(i))))=trim(iparr(i)) then
ignored=true
exit for
end if
next
else
iparr=rsip("ignoreip")
if ip=trim(iparr) then
ignored=true
end if
end if
end if
rsip.close
end if
if ignored then
response.write "<script language=javascript>window.location.href='ignoreip.htm'</script>"
end if
end sub
上一篇: Spring配置集合列表
下一篇: Spring配置构造函数的参数
推荐阅读
-
臭名昭著的手机验证码功能是如何实现的
-
PHP 根据IP地址控制访问的代码_PHP教程
-
php如何验证smtp信息的正确
-
mysql查询ip地址段时注意的问题
-
php 禁止单个IP地址或IP段访问的实现代码
-
如何用 TP5、thinkPHP5.1 框架 接口开发 异常时返回json,validata 路由验证 失败后返回json(框架默认的是 debug返回异常页面 非debug返回空页面)
-
apache前端+nginx后端,nginx如何rewrite正确的地址
-
Springboot 如何实现filter拦截token验证和跨域
-
基于vue3.0和element-plus的IP地址输入框
-
如何使用nginx或php将请求转发到另一个地址