asp 根据IP地址自动判断转向分站的代码

来源:asp之家 时间:2011-04-14 10:51:00 

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("http://www.cidianwang.com") 
end if 
if instr(UrlCity,"深圳")<>0 then 
response.Redirect("http://www.wendahu.com") 
end if 
if instr(UrlCity,"上海")<>0 then 
response.Redirect("http://www.aspxhome.com") 
end if 所用到的IP数据库可以去网上down一个回来

标签:asp,根据IP,自动判断
0
投稿

猜你喜欢

  • 如何编制一个产生随机密码的函数?

    2009-11-08 19:06:00
  • Navicat配置mysql数据库用户权限问题

    2024-01-24 13:06:21
  • MySQL查询优化之索引的应用详解

    2024-01-12 14:14:38
  • Python开发企业微信机器人每天定时发消息实例

    2022-11-17 14:37:27
  • 如何利用Python实现自动打卡签到的实践

    2021-06-07 06:03:38
  • 简单介绍Python中利用生成器实现的并发编程

    2022-04-29 00:56:12
  • MySql服务器系统变量和状态变量介绍

    2024-01-20 19:37:15
  • 详尽讲述用Python的Django框架测试驱动开发的教程

    2023-04-21 18:28:19
  • 关于textarea的直观换行

    2010-03-18 15:59:00
  • Pytorch中使用ImageFolder读取数据集时忽略特定文件

    2021-08-09 01:18:24
  • git push时卡住的解决方法(长时间不报错也不自动退出)

    2022-05-08 04:40:00
  • 浅谈anaconda python 版本对应关系

    2023-12-06 01:02:35
  • 更改SQL Server 2005数据库中tempdb位置的方法

    2024-01-25 17:46:35
  • Pandas 实现分组计数且不计重复

    2022-01-30 03:39:56
  • ASP中类的详细介绍(class Property Get、Property Let)

    2008-02-20 19:18:00
  • SQL Server数据库涉及到的数据仓库概念

    2009-01-15 12:58:00
  • python3发送邮件需要经过代理服务器的示例代码

    2023-07-27 01:00:44
  • python编写softmax函数、交叉熵函数实例

    2023-11-24 07:08:11
  • 详解python3中的真值测试

    2022-03-10 13:56:59
  • 几种设置表单元素中文本输入框不可编辑的方法总结

    2024-04-18 09:34:14
  • asp之家 网络编程 m.aspxhome.com