⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 admin_main.jsp

📁 “JSP数据库项目案例导航”一书从第一章到第十一章各章实例的源程序文件以及数据库文件。 注意: 1. 本书中的案例提供的数据库环境不同
💻 JSP
字号:
<%@ page language="java"  contentType="text/html; charset=GBK"%><%@ include file="INC/const.jsp"%><%@ page import = "java.util.Vector"%><html><head><title><%=forumName%>--管理页面</title><link rel="stylesheet" type="text/css" href="forum.css"></head><BODY bgcolor="#ffffff" alink="#333333" vlink="#333333" link="#333333" topmargin="20"><%try{	if(session.getAttribute("adminFlag")==null||"".equals(session.getAttribute("adminFlag")))		throw new Exception("本页面为管理员专用,请<a href=elogin.jsp>登录管理</a>后进入。");	%><table cellpadding=0 cellspacing=0 border=0 width=95% bgcolor=<%=aTableBackColor%> align=center>  <tr>    <td>      <table cellpadding=3 cellspacing=1 border=0 width=100%>        <tr bgcolor='<%=aTableTitleColor%>'>        <td align=center colspan="2"><font size=4><b>管理首页</b></font>        </td>        </tr>            <tr bgcolor=<%=tableBodyColor%>>              <td width="20%" valign=top><%@ include file="admin_left.jsp"%>	      </td>			<td width="80%" align=center>				<font size=3 color="#0066FF">欢迎<b><%=session.getAttribute("adminName")%></b>登录管理页面<br><br>单击左边的导航栏,进行相关的管理操作				</font>			</td>      </tr>        </table>        </td>    </tr></table><%}catch(Exception e){	e.printStackTrace();	String errMsg=e.getMessage();	%>	<%@include file="INC/error.jsp"%>	<%}%><%@ include file="foot.jsp"%>

⌨️ 快捷键说明

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