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

中间件编程

开发平台:

HTML/CSS

  1. <%@ CODEPAGE=65001 %>
  2. <%
  3. '///////////////////////////////////////////////////////////////////////////////
  4. '//              Z-Blog
  5. '// 作    者:    朱煊(zx.asd)
  6. '// 版权所有:    RainbowSoft Studio
  7. '// 技术支持:    rainbowsoft@163.com
  8. '// 程序名称:    
  9. '// 程序版本:    
  10. '// 单元名称:    c_error.asp
  11. '// 开始时间:    2004.07.25
  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. <!-- #include file="../function/c_function_md5.asp" -->
  23. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  24. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<%=ZC_BLOG_LANGUAGE%>" lang="<%=ZC_BLOG_LANGUAGE%>">
  25. <head>
  26. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  27. <meta http-equiv="Content-Language" content="<%=ZC_BLOG_LANGUAGE%>" />
  28. <link rel="stylesheet" rev="stylesheet" href="../CSS/admin.css" type="text/css" media="screen" />
  29. <title><%=ZC_BLOG_TITLE & ZC_MSG044 & ZC_MSG045%></title>
  30. </head>
  31. <body>
  32. <div id="divMain">
  33. <div class="Header"><%=ZC_MSG045%></div>
  34. <div id="divMain2">
  35. <form id="edit" name="edit" method="post">
  36. <%
  37. Response.Write "<p>" & ZC_MSG098 & ":" & ZVA_ErrorMsg(Request.QueryString("errorid")) & "</p>"
  38. If CLng(Request.QueryString("number"))<>0 Then
  39. Response.Write "<p>" & ZC_MSG076 & ":" & "" & CLng(Request.QueryString("number")) & "</p>"
  40. Response.Write "<p>" & ZC_MSG016 & ":" & "<br/>" & TransferHTML(Request.QueryString("description"),"[html-format]") & "</p>"
  41. Response.Write "<p>" & TransferHTML(Request.QueryString("source"),"[html-format]") & "</p>"
  42. End If
  43. If CheckRegExp(Request.QueryString("sourceurl"),"[homepage]")=True Then
  44. Response.Write "<p><a href=""" & TransferHTML(Request.QueryString("sourceurl"),"[html-format]") & """>" & ZC_MSG295 & "</a></p>"
  45. Else
  46. Response.Write "<p><a href=""" & ZC_BLOG_HOST & """>" & ZC_MSG295 & "</a></p>"
  47. End If
  48. If CLng(Request.QueryString("errorid"))=6 Then
  49. Response.Write "<p><a href=""../cmd.asp?act=login"">"& ZC_MSG009 & "</a></p>"
  50. End If
  51. %>
  52. </form>
  53. </div>
  54. </div>
  55. </body>
  56. </html>
  57. <%
  58. If Err.Number<>0 Then
  59. Response.Redirect ZC_BLOG_HOST & "function/c_error.asp"
  60. End If
  61. %>