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

中间件编程

开发平台:

HTML/CSS

  1. <%@ CODEPAGE=65001 %>
  2. <% Option Explicit %>
  3. <% On Error Resume Next %>
  4. <% Response.Charset="UTF-8" %>
  5. <!-- #include file="../c_option.asp" -->
  6. <!-- #include file="../function/c_function.asp" -->
  7. <!-- #include file="../function/c_function_md5.asp" -->
  8. <!-- #include file="../function/c_system_lib.asp" -->
  9. <!-- #include file="../function/c_system_base.asp" -->
  10. <!-- #include file="../function/c_system_event.asp" -->
  11. <!-- #include file="../function/c_system_plugin.asp" -->
  12. <!-- #include file="../plugin/p_config.asp" -->
  13. <%
  14. Call OpenConnect()
  15. Set BlogUser =New TUser
  16. BlogUser.Verify()
  17. Call CheckReference("")
  18. Dim strAct
  19. strAct="admin"
  20. '检查权限
  21. If Not CheckRights(strAct) Then Call ShowError(6)
  22. %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  23. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<%=ZC_BLOG_LANGUAGE%>" lang="<%=ZC_BLOG_LANGUAGE%>">
  24. <head>
  25. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  26. <meta http-equiv="Content-Language" content="<%=ZC_BLOG_LANGUAGE%>" />
  27. <link rel="stylesheet" rev="stylesheet" href="../CSS/admin.css" type="text/css" media="screen" />
  28. <title>Z-Blog <%=ZC_MSG248%></title>
  29. </head>
  30. <frameset rows="80,*" framespacing="0" border="0" frameborder="0">
  31. <frame name="banner" scrolling="no" src="admin_top.asp" noresize="noresize"  marginwidth="0" marginheight="0" frameborder="0">
  32. <frameset cols="150,*" framespacing="0"  border="0" frameborder="0">
  33. <frame name="list" target="main" src="admin_left.asp"  noresize="noresize"  marginwidth="0" marginheight="0" frameborder="0" scrolling="none">
  34. <frame name="main" src="../cmd.asp?<%If Request.ServerVariables("QUERY_STRING")="" Then%>act=SiteInfo<%Else Response.Write Request.ServerVariables("QUERY_STRING") End If%>" noresize="noresize" marginwidth="0" marginheight="0" frameborder="0" scrolling="yes">
  35. </frameset>
  36. <noframes>
  37. <body>
  38. <p></p>
  39. </body>
  40. </noframes>
  41. </frameset>
  42. </html>
  43. <%
  44. Call CloseConnect()
  45. If Err.Number<>0 then
  46. Call ShowError(0)
  47. End If
  48. %>