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

中间件编程

开发平台:

HTML/CSS

  1. <%@ CODEPAGE=65001 %>
  2. <%
  3. '///////////////////////////////////////////////////////////////////////////////
  4. '// 插件应用:    Z-Blog(http://www.rainbowsoft.org)
  5. '// 插件制作:    zx.asd
  6. '// 备    注:    Ping中心通知程序
  7. '// 最后修改:   2005-12-8
  8. '// 最后版本:    
  9. '///////////////////////////////////////////////////////////////////////////////
  10. %>
  11. <% Option Explicit %>
  12. <% On Error Resume Next %>
  13. <% Response.Charset="UTF-8" %>
  14. <% Response.Buffer=True %>
  15. <!-- #include file="../../c_option.asp" -->
  16. <!-- #include file="../../function/c_function.asp" -->
  17. <!-- #include file="../../function/c_system_lib.asp" -->
  18. <!-- #include file="../../function/c_system_base.asp" -->
  19. <!-- #include file="../../function/c_system_event.asp" -->
  20. <!-- #include file="../../function/c_system_plugin.asp" -->
  21. <%
  22. Call System_Initialize()
  23. '检查非法链接
  24. Call CheckReference("")
  25. '检查权限
  26. If BlogUser.Level>1 Then Call ShowError(6) 
  27. If CheckPluginState("PingTool")=False Then Call ShowError(48)
  28. BlogTitle="Ping中心和引用通告发送器"
  29. If Not IsEmpty(Request.QueryString("ok")) Then
  30. Call SaveToFile(BlogPath & "Plugin/PingTool/data/ping.html",Request.Form("txaContent"),"utf-8",False)
  31. Call SetBlogHint(True,Empty,Empty)
  32. End If
  33. %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  34. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<%=ZC_BLOG_LANGUAGE%>" lang="<%=ZC_BLOG_LANGUAGE%>">
  35. <head>
  36. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  37. <meta http-equiv="Content-Language" content="<%=ZC_BLOG_LANGUAGE%>" />
  38. <link rel="stylesheet" rev="stylesheet" href="../../CSS/admin.css" type="text/css" media="screen" />
  39. <script language="JavaScript" src="../../script/common.js" type="text/javascript"></script>
  40. <title><%=BlogTitle%></title>
  41. </head>
  42. <body>
  43. <div id="divMain">
  44. <div class="Header">Ping中心和引用通告发送器</div>
  45. <div id="divMain2">
  46. <%
  47. Call GetBlogHint()
  48. %>
  49. <form border="1" name="edit" id="edit" method="post" action="tool.asp?ok">
  50. <p><b>设置Ping中心</b></p>
  51. <p><textarea style="height:300px;width:100%" name="txaContent" id="txaContent"><%=TransferHTML(LoadFromFile(BlogPath & "Plugin/PingTool/data/ping.html","utf-8"),"[textarea]")%></textarea></p>
  52. <p>&nbsp;</p>
  53. <p><input type="submit" class="button" value="提交" name="B1"/></p>
  54. </form>
  55. </div>
  56. <script>
  57. </script>
  58. </body>
  59. </html>
  60. <%
  61. Call System_Terminate()
  62. If Err.Number<>0 then
  63.   Call ShowError(0)
  64. End If
  65. %>