admin_about.jsp

来自「图书管理系统,B/S,C/S都有,附有源代码」· JSP 代码 · 共 62 行

JSP
62
字号
<%@ page contentType="text/html; charset=GBK" language="java" errorPage="" %>
<jsp:useBean id="admin" scope="page" class="admin.admin" />
<jsp:useBean id="dt" scope="page" class="database.DateTime" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK" />
<link rel=stylesheet href="../css/library.css" type="text/css">
<title>图书管理系统</title>
</head>

<body>
<%
String supervisor=(String)session.getAttribute("supervisor");//从SESSION中获取管理员ID
if(supervisor!=null){
admin.adminInfo(session);//获取管理员信息
%>
<table cellpadding="0" cellspacing="0" border="0" width="760" bgcolor="#2E79BE" align="center">
	<tr>
		<td>
			<table cellpadding="3" cellspacing="1" border="0" width="760">
				<tr>
					<td colspan="2" height="22" bgcolor="#6CA6D5" align="center"><p style="font-size: 16px;"><strong>图书管理系统</strong></p></td>
				</tr>
				<tr bgcolor="#DCEFFA">
					<td width="130" height="30" align="left" valign="top"><%@include file="admin_left.jsp"%></td>
					<td width="630" align="center" valign="middle">
						作者:&nbsp;<strong><a href="http://hi.baidu.com/onino_info">nino</a></strong><br />
						版本:&nbsp;<strong>0.1</strong><br />
						完成时间:&nbsp;<strong>2007/12/31</strong><br />
						QQ:<strong>71215191</strong>
					</td>
				</tr>
			</table>
		</td>
	</tr>
	<tr>
		<td height="20" bgcolor="#6CA6D5" align="center">&nbsp;</td>
	</tr>
</table>
<%}else{%>
<table cellpadding="0" cellspacing="0" border="0" width="760" bgcolor="#2E79BE" align="center">
	<tr>
		<td>
			<table cellpadding="3" cellspacing="1" border="0" width="760">
				<tr>
					<td height="22" bgcolor="#6CA6D5" align="center"><p style="font-size: 16px;"><strong>图书管理系统</strong></p></td>
				</tr>
				<tr bgcolor="#DCEFFA">
					<td height="30" align="center">对不起,您尚未登录!</td>
				</tr>
			</table>
		</td>
	</tr>
	<tr>
		<td height="20" bgcolor="#6CA6D5" align="center">&nbsp;</td>
	</tr>
</table>
<%}%>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?