📄 main.jsp
字号:
<%
/**
* $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>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -