时间:2021-05-28
Function getIpvalue(clientIP)'得到客户端的IP转换成长整型,返回值getIpvalue
On Error Resume Next
Dim strIp, array_Ip
strIp=0
array_Ip = Split(clientIP,".")
If UBound(array_Ip)<>3 Then
getIpvalue=0
Exit Function
End If
For i=0 To 3
strIp=strIp+(CInt(array_Ip(i))*(256^(3-i)))
Next
getIpvalue=strIp
If Err Then getIpvalue=0
End Function
clientIP=request.ServerVariables("REMOTE_HOST")
IpValue=getIpvalue(clientIP)
strSql="select top 1 City from [Ipaddress] where "&IpValue&"
between Ip1 and Ip2"
Set RsIp=conn.execute(strSql)
If RsIp.bof and RsIp.eof then
UrlCity="未知"
Else
UrlCity=RsIp.Fields.Item("City").Value
End If
if instr(UrlCity,"广州")<>0 then
response.Redirect("https://www.jb51.net")
end if
if instr(UrlCity,"深圳")<>0 then
response.Redirect("http://img.jb51.net")
end if
if instr(UrlCity,"上海")<>0 then
response.Redirect("http://xiazai.jb51.net")
end if
所用到的IP数据库可以去网上down一个回来
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
ASP用代码实现限制某个IP或IP段访问网站,对于一些没有IIS设置权限的用户来说是相当的实用。程序会根据传入函数的IP自动判断该IP段,会将整个IP段封闭
asp检查ip地址是否为私有/内网ip地址源代码。内网/私有IP地址网段如下,还有127开头的回环地址:10.0.0.0-10.255.255.255172.1
asp函数代码:复制代码代码如下:functioncheckip(checkstring)'用正则判断IP是否合法dimre1setre1=newRegExpr
经过复杂的判断与算是的获取IP地址函数复制代码代码如下:functiongetIP(){if(getenv('HTTP_CLIENT_IP')){$ip=get
设置:注意:转向地址是最后不需要加/,如果加了,访问原地址:https:///mypic/logo/index.asp时,转向后的地址就是http://pic.