📄 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( "login.jsp" );
return;
}
%>
<html>
<head>
<title>main.jsp</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>Welcome to Jive Admin</b>
</font>
<font face="verdana,arial,helvetica,sans-serif" size="-1">
<p>
You are running Jive version <b><%= PropertyManager.getJiveVersion() %></b>
(<a href="http://www.coolservlets.com/jive/download.jsp" target="_blank">check for new version</a>)
<p>
<i>Please send feedback to
<a href="mailto:bill@coolservlets.com">bill@coolservlets.com</a> about
this tool.
</i>
</ul>
</font>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -