Foxtable(狐表)用户栏目专家坐堂 → http如何设置成只有特定ip才能访问


  共有1687人关注过本帖树形打印复制链接

主题:http如何设置成只有特定ip才能访问

帅哥,在线噢!
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110528 积分:562524 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2024/1/19 9:58:00 [显示全部帖子]

httprequest事件第一行

dim ss() as string = e.Request.RemoteEndPoint().Address.ToString().split(".")
dim a as integer = cint(ss(ss.length - 1)) 
if a>=2 andalso a<=20 then
其它正常的网页代码
else
e.WriteString("无权访问")
end if

 回到顶部