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

中间件编程

开发平台:

HTML/CSS

  1. <%@ CODEPAGE=65001 %>
  2. <%
  3. '///////////////////////////////////////////////////////////////////////////////
  4. '//              Z-Blog
  5. '// 作    者:    朱煊(zx.asd) & Sipo
  6. '// 版权所有:    RainbowSoft Studio
  7. '// 技术支持:    rainbowsoft@163.com
  8. '// 程序名称:    
  9. '// 程序版本:    
  10. '// 单元名称:    guestbook.asp
  11. '// 开始时间:    2007-01-03
  12. '// 最后修改:    
  13. '// 备    注:    GuestBook
  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. Call System_Initialize()
  30. 'plugin node
  31. For Each sAction_Plugin_Guestbook_Begin in Action_Plugin_Guestbook_Begin
  32. If Not IsEmpty(sAction_Plugin_Guestbook_Begin) Then Call Execute(sAction_Plugin_Guestbook_Begin)
  33. Next
  34. Dim GuestBook
  35. Set GuestBook=New TGuestBook
  36. Dim s
  37. s=GetTemplate("TEMPLATE_GUESTBOOK")
  38. If s="" Then
  39. GuestBook.template="SINGLE"
  40. Else
  41. GuestBook.template="GUESTBOOK"
  42. End If
  43. If GuestBook.Export(Request.QueryString("page")) Then
  44. GuestBook.Build
  45. Response.Write GuestBook.html
  46. End If
  47. 'plugin node
  48. For Each sAction_Plugin_Guestbook_End in Action_Plugin_Guestbook_End
  49. If Not IsEmpty(sAction_Plugin_Guestbook_End) Then Call Execute(sAction_Plugin_Guestbook_End)
  50. Next
  51. Call System_Terminate()
  52. %><!-- <%=RunTime()%>ms --><%
  53. If Err.Number<>0 then
  54. Call ShowError(0)
  55. End If
  56. %>