default.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. '// 单元名称:    default.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. <!-- #include file="function/c_system_lib.asp" -->
  24. <!-- #include file="function/c_system_base.asp" -->
  25. <!-- #include file="function/c_system_event.asp" -->
  26. <!-- #include file="function/c_system_plugin.asp" -->
  27. <!-- #include file="plugin/p_config.asp" -->
  28. <%
  29. If (InStr(LCase(Request.ServerVariables("HTTP_ACCEPT")),"text/vnd.wap.wml") > 0) And (InStr(LCase(Request.ServerVariables("HTTP_ACCEPT")),"text/html") = 0)  Then Response.Redirect "wap.asp"
  30. '向导部分wizard
  31. If ZC_DATABASE_PATH="data/zblog.mdb" Then Response.Redirect "wizard.asp?verify=" & MD5(ZC_DATABASE_PATH & Replace(LCase(Request.ServerVariables("PATH_TRANSLATED")),"default.asp",""))
  32. Call System_Initialize_WithOutDB()
  33. 'plugin node
  34. For Each sAction_Plugin_Default_Begin in Action_Plugin_Default_Begin
  35. If Not IsEmpty(sAction_Plugin_Default_Begin) Then Call Execute(sAction_Plugin_Default_Begin)
  36. Next
  37. Dim ArtList
  38. Set ArtList=New TArticleList
  39. ArtList.LoadCache
  40. ArtList.template="DEFAULT"
  41. If ArtList.ExportByCache("","","","","","") Then
  42. ArtList.Build
  43. Response.Write ArtList.html
  44. End If
  45. 'plugin node
  46. For Each sAction_Plugin_Default_End in Action_Plugin_Default_End
  47. If Not IsEmpty(sAction_Plugin_Default_End) Then Call Execute(sAction_Plugin_Default_End)
  48. Next
  49. Call System_Terminate_WithOutDB()
  50. %><!-- <%=RunTime()%>ms --><%
  51. If Err.Number<>0 then
  52. Call ShowError(0)
  53. End If
  54. %>