c_urlredirect.asp
上传用户:saigedz
上传日期:2019-10-14
资源大小:997k
文件大小:1k
源码类别:

中间件编程

开发平台:

HTML/CSS

  1. <%@ CODEPAGE=65001 %>
  2. <%
  3. '///////////////////////////////////////////////////////////////////////////////
  4. '//              Z-Blog
  5. '// 作    者:    朱煊(zx.asd)&(sipo)
  6. '// 版权所有:    RainbowSoft Studio
  7. '// 技术支持:    rainbowsoft@163.com
  8. '// 程序名称:    
  9. '// 程序版本:    
  10. '// 单元名称:    c_urlredirect.asp
  11. '// 开始时间:    2007-1-24
  12. '// 最后修改:    
  13. '// 备    注:    
  14. '///////////////////////////////////////////////////////////////////////////////
  15. %>
  16. <% Option Explicit %>
  17. <% On Error Resume Next %>
  18. <% Response.Charset="UTF-8" %>
  19. <% Response.Buffer=True %>
  20. <!-- #include file="../c_option.asp" -->
  21. <!-- #include file="../function/c_function.asp" -->
  22. <%
  23. Dim strReferer
  24. strReferer=CStr(Request.ServerVariables("HTTP_REFERER"))
  25. If Instr(strReferer,ZC_BLOG_HOST)=0 Then 
  26. ShowError(5)
  27. End If
  28. Dim strUrl
  29. strUrl=URLDecodeForAntiSpam(Request.QueryString("url"))
  30. If strUrl="" Then strUrl="http://www.rainbowsoft.org/"
  31. Response.Redirect strUrl
  32. %>