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

中间件编程

开发平台:

HTML/CSS

  1. <%@ CODEPAGE=65001 %>
  2. <%
  3. '///////////////////////////////////////////////////////////////////////////////
  4. '//              Z-Blog 彩虹网志个人版
  5. '// 作    者:    朱煊(zx.asd)
  6. '// 版权所有:    RainbowSoft Studio
  7. '// 技术支持:    rainbowsoft@163.com
  8. '// 程序名称:    
  9. '// 程序版本:    
  10. '// 单元名称:    edit_catalog.asp
  11. '// 开始时间:    2005.03.03
  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_system_lib.asp" -->
  23. <!-- #include file="../function/c_system_base.asp" -->
  24. <!-- #include file="../function/c_system_plugin.asp" -->
  25. <!-- #include file="../plugin/p_config.asp" -->
  26. <%
  27. Call System_Initialize()
  28. 'plugin node
  29. For Each sAction_Plugin_Edit_Catalog_Begin in Action_Plugin_Edit_Catalog_Begin
  30. If Not IsEmpty(sAction_Plugin_Edit_Catalog_Begin) Then Call Execute(sAction_Plugin_Edit_Catalog_Begin)
  31. Next
  32. '检查非法链接
  33. Call CheckReference("")
  34. '检查权限
  35. If Not CheckRights("CategoryEdt") Then Call ShowError(6)
  36. Dim EditCategory
  37. Set EditCategory=New TCategory
  38. If Not IsEmpty(Request.QueryString("id")) Then
  39. If EditCategory.LoadInfoByID(Request.QueryString("id"))=False Then Call ShowError(12)
  40. End If
  41. BlogTitle=ZC_BLOG_TITLE & ZC_MSG044 & ZC_MSG066
  42. %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  43. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<%=ZC_BLOG_LANGUAGE%>" lang="<%=ZC_BLOG_LANGUAGE%>">
  44. <head>
  45. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  46. <meta http-equiv="Content-Language" content="<%=ZC_BLOG_LANGUAGE%>" />
  47. <link rel="stylesheet" rev="stylesheet" href="../CSS/admin.css" type="text/css" media="screen" />
  48. <script language="JavaScript" src="../script/common.js" type="text/javascript"></script>
  49. <link rel="stylesheet" href="../CSS/jquery.bettertip.css" type="text/css" media="screen">
  50. <script language="JavaScript" src="../script/jquery.bettertip.pack.js" type="text/javascript"></script>
  51. <title><%=BlogTitle%></title>
  52. </head>
  53. <body>
  54. <div id="divMain">
  55. <div class="Header"><%=ZC_MSG243%></div>
  56. <%
  57. Response.Write "<div class=""SubMenu"">" & Response_Plugin_CategoryEdt_SubMenu & "</div>"
  58. %>
  59. <div id="divMain2">
  60. <% Call GetBlogHint() %>
  61. <form id="edit" name="edit" method="post">
  62. <%
  63. Response.Write "<input id=""edtID"" name=""edtID""  type=""hidden"" value="""& EditCategory.ID &""" />"
  64. Response.Write "<p>"& ZC_MSG001 &":</p><p><input id=""edtName"" size=""40"" name=""edtName""  type=""text"" value="""& TransferHTML(EditCategory.Name,"[html-format]") &""" />(*)</p><p></p>"
  65. Response.Write "<p>"& ZC_MSG079 &":</p><p><input id=""edtOrder"" size=""40"" name=""edtOrder""  type=""text"" value="""& EditCategory.Order &""" /></p><p></p>"
  66. Response.Write "<p>"& ZC_MSG147 &":</p><p><input id=""edtAlias"" size=""80"" name=""edtAlias""  type=""text"" value="""& TransferHTML(EditCategory.Alias,"[html-format]") &""" /></p><p></p>"
  67. Response.Write "<p><input type=""submit"" class=""button"" value="""& ZC_MSG087 &""" id=""btnPost"" onclick='return checkCateInfo();' /></p><p></p>"
  68. %>
  69. </form>
  70. </div>
  71. </div>
  72. </body>
  73. <script>
  74. var str17="<%=ZC_MSG118%>";
  75. function checkCateInfo(){
  76. document.getElementById("edit").action="../cmd.asp?act=CategoryPst";
  77. if(!document.getElementById("edtName").value){
  78. alert(str17);
  79. return false
  80. }
  81. }
  82. </script>
  83. </html>
  84. <% 
  85. Call System_Terminate()
  86. If Err.Number<>0 then
  87. Call ShowError(0)
  88. End If
  89. %>