新微赢技术网

标题: ASP下载系统防盗链方法 [打印本页]

作者: 黑侠    时间: 2009-3-16 16:58
标题: ASP下载系统防盗链方法
 打开文件 SoftDown.Asp 在:
以下是引用片段:
  if request.QueryString("ID")="" then
  response.write "不能连接或者没有指定下载软件"
  response.end
  end if
  的上面
  或者是下面加上下列代码
以下是引用片段:
  dim strReferer,domain,splDomain,isHttp
  isHttp=false
  本站下载系统网址列表,不要带上http://
以下是引用片段:
  domain="sron.net,61.156.14.223,61.156.14.227"
  splDomain=split(domain,",")
  strReferer=Request.ServerVariables("HTTP_REFERER")
  for iii = 0 to ubound(splDomain)
  if instr(strReferer,trim(splDomain(iii)))>0 then isHttp=True
  next
  if isnull(strReferer) or isHttp=false then
  Response.Write "下载链接来自其他网站,这是不允许的,请进入本站页面后再进行下载。"

  CloseDatabase
  response.end
  end if




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2