catalog.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. '// 单元名称:    catalog.asp
  11. '// 开始时间:    2005.02.11
  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. <!-- #include file="function/c_system_lib.asp" -->
  24. <!-- #include file="function/c_system_base.asp" -->
  25. <!-- #include file="function/c_system_plugin.asp" -->
  26. <!-- #include file="function/c_system_event.asp" -->
  27. <!-- #include file="plugin/p_config.asp" -->
  28. <%
  29. Call System_Initialize()
  30. 'plugin node
  31. For Each sAction_Plugin_Catalog_Begin in Action_Plugin_Catalog_Begin
  32. If Not IsEmpty(sAction_Plugin_Catalog_Begin) Then Call Execute(sAction_Plugin_Catalog_Begin)
  33. Next
  34. Dim ArtList
  35. Set ArtList=New TArticleList
  36. ArtList.LoadCache
  37. ArtList.template="CATALOG"
  38. If ArtList.ExportByMixed(Request.QueryString("page"),Request.QueryString("cate"),Request.QueryString("auth"),Request.QueryString("date"),Request.QueryString("tags"),ZC_DISPLAY_MODE_ALL) Then
  39. ArtList.Build
  40. Response.Write ArtList.html
  41. End If
  42. 'plugin node
  43. For Each sAction_Plugin_Catalog_End in Action_Plugin_Catalog_End
  44. If Not IsEmpty(sAction_Plugin_Catalog_End) Then Call Execute(sAction_Plugin_Catalog_End)
  45. Next
  46. Call System_Terminate()
  47. %><!-- <%=RunTime()%>ms --><%
  48. If Err.Number<>0 then
  49. Call ShowError(0)
  50. End If
  51. %>