main.jsp
资源名称:NetOffice.rar [点击查看]
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:1k
源码类别:
电子政务应用
开发平台:
Java
- <%
- /**
- * $RCSfile: main.jsp,v $
- * $Revision: 1.2.2.1 $
- * $Date: 2001/01/06 22:58:53 $
- */
- %>
- <%@ page import="java.util.*,
- com.coolservlets.forum.*" %>
- <jsp:useBean id="adminBean" scope="session"
- class="com.coolservlets.forum.util.admin.AdminBean"/>
- <% ////////////////////////////////
- // Jive authorization check
- // check the bean for the existence of an authorization token.
- // Its existence proves the user is valid. If it's not found, redirect
- // to the login page
- Authorization authToken = adminBean.getAuthToken();
- if( authToken == null ) {
- response.sendRedirect( "/mainctrl/bbs/admin" );
- return;
- }
- %>
- <html>
- <head>
- <title>首页</title>
- </head>
- <body background="images/shadowBack.gif" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
- <p>
- <font face="verdana,arial,helvetica,sans-serif">
- <b>欢迎使用BBS管理程序</b>
- </font>
- <font face="verdana,arial,helvetica,sans-serif" size="-1">
- <p>
- 此管理程序的版本为:<b><%= PropertyManager.getJiveVersion() %></b>。
- <p>
- <!--
- <i>请反馈信息给
- <a href="mailto:xuejiezhang@visionnex.com">xuejiezhang@visionnex.com</a>。
- </i>
- -->
- </ul>
- </font>
- </body>
- </html>