main.jsp
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:1k
源码类别:

电子政务应用

开发平台:

Java

  1. <%
  2. /**
  3.  * $RCSfile: main.jsp,v $
  4.  * $Revision: 1.2.2.1 $
  5.  * $Date: 2001/01/06 22:58:53 $
  6.  */
  7. %>
  8. <%@ page import="java.util.*,
  9.                  com.coolservlets.forum.*" %>
  10. <jsp:useBean id="adminBean" scope="session"
  11.  class="com.coolservlets.forum.util.admin.AdminBean"/>
  12. <% ////////////////////////////////
  13. // Jive authorization check
  14. // check the bean for the existence of an authorization token.
  15. // Its existence proves the user is valid. If it's not found, redirect
  16. // to the login page
  17. Authorization authToken = adminBean.getAuthToken();
  18. if( authToken == null ) {
  19. response.sendRedirect( "/mainctrl/bbs/admin" );
  20. return;
  21. }
  22. %>
  23. <html>
  24. <head>
  25. <title>首页</title>
  26. </head>
  27. <body background="images/shadowBack.gif" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
  28. <p>
  29. <font face="verdana,arial,helvetica,sans-serif">
  30. <b>欢迎使用BBS管理程序</b>
  31. </font>
  32. <font face="verdana,arial,helvetica,sans-serif" size="-1">
  33. <p>
  34. 此管理程序的版本为:<b><%= PropertyManager.getJiveVersion() %></b>。
  35. <p>
  36. <!--
  37. <i>请反馈信息给
  38. <a href="mailto:xuejiezhang@visionnex.com">xuejiezhang@visionnex.com</a>。
  39. </i>
  40. -->
  41. </ul>
  42. </font>
  43. </body>
  44. </html>