📄 admin_left.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="errorpage.jsp" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="Inc/student_com.css" type="text/css" rel="stylesheet">
<title>后台管理</title>
</head>
<jsp:useBean id="sqlbean" class="myBeans.SQLBean" scope="page"/>
<%
String admin_id = (String)session.getAttribute("id");
if(admin_id==null){response.sendRedirect("login.jsp");}
String sql = "select DEPARTMENT from studba where ID='"+admin_id+"'";
String dep ="";
try{
ResultSet rs = sqlbean.executeQuery(sql);
if(rs.next()){
dep = rs.getString("DEPARTMENT");
session.setAttribute("dep",String.valueOf(dep));
}
}catch(Exception e){System.out.print(e.toString());}
%>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="20" background="images/bgleft_center.gif"><img src="images/zw000.gif" width="20" height="1"></td>
<td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><div align="center"><img src="images/Logo.jpg" width="180" height="60"></div></td>
</tr>
</table>
<table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="images/left_title_02.gif" width="200" height="59" border="0"></td>
</tr>
<tr>
<td height="50" valign="top" background="images/left_tdbg_01.gif"><table width="167" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="300" valign="top">
<table width="145" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="50" valign="top"><style rel=stylesheet type=text/css>
td {
FONT-SIZE: 9pt; COLOR: #000000; FONT-FAMILY: 宋体,Dotum,DotumChe,Arial;line-height: 150%;
}
INPUT {
BACKGROUND-COLOR: #ffffff;
BORDER-BOTTOM: #666666 1px solid;
BORDER-LEFT: #666666 1px solid;
BORDER-RIGHT: #666666 1px solid;
BORDER-TOP: #666666 1px solid;
COLOR: #666666;
HEIGHT: 18px;
border-color: #666666 #666666 #666666 #666666; font-size: 9pt
}
.favMenu {
BACKGROUND: #ffffff; COLOR: windowtext; CURSOR: hand;line-height: 150%;
}
.favMenu DIV {
WIDTH: 100%;height: 5px;
}
.favMenu A {
COLOR: windowtext; TEXT-DECORATION: none
}
.favMenu A:hover {
COLOR: windowtext; TEXT-DECORATION: underline
}
.topFolder {
}
.topItem {
}
.subFolder {
PADDING: 0px;BACKGROUND: #ffffff;
}
.subItem {
PADDING: 0px;BACKGROUND: #ffffff;
}
.sub {
BACKGROUND: #ffffff;DISPLAY: none; PADDING: 0px;
}
.sub .sub {
BORDER: 0px;BACKGROUND: #ffffff;
}
.icon {
HEIGHT: 16px; MARGIN-RIGHT: 5px; VERTICAL-ALIGN: absmiddle; WIDTH: 16px
}
.outer {
BACKGROUND: #ffffff;PADDING: 0px;
}
.inner {
BACKGROUND: #ffffff;PADDING: 0px;
}
.scrollButton {
BACKGROUND: #ffffff; BORDER: #f6f6f6 1px solid; PADDING: 0px;
}
.flat {
BACKGROUND: #ffffff; BORDER: #f6f6f6 1px solid; PADDING: 0px;
}
</style>
<SCRIPT type=text/javascript>
var selectedItem = null;
var targetWin;
document.onclick = handleClick;
document.onmouseover = handleOver;
document.onmouseout = handleOut;
document.onmousedown = handleDown;
document.onmouseup = handleUp;
document.write(writeSubPadding(10)); //write the stylesheet for the sub. Getting the indention right
function handleClick() {
el = getReal(window.event.srcElement, "tagName", "DIV");
if ((el.className == "topFolder") || (el.className == "subFolder")) {
// if (el.sub == null) el.sub = eval(el.id + "Sub");
// alert(el.sub);
el.sub = eval(el.id + "Sub");
if (el.sub.style.display == null) el.sub.style.display = "none";
if (el.sub.style.display != "block") { //hidden
//any other sub open?
if (el.parentElement.openedSub != null) {
var opener = eval(el.parentElement.openedSub + ".opener");
ChangeFolderImg(opener,1)
hide(el.parentElement.openedSub);
if (opener.className == "topFolder")
outTopItem(opener);
}
el.sub.style.display = "block";
el.sub.parentElement.openedSub = el.sub.id;
el.sub.opener = el;
ChangeFolderImg(el,2)
}
else {
// if (el.sub.openedSub != null) hide(el.sub.openedSub);
hide(el.sub.id);
ChangeFolderImg(el,1)
}
}
if ((el.className == "subItem") || (el.className == "subFolder")) {
if (selectedItem != null)
restoreSubItem(selectedItem);
highlightSubItem(el);
}
if ((el.className == "topItem") || (el.className == "topFolder")) {
if (selectedItem != null)
restoreSubItem(selectedItem);
}
if ((el.className == "topItem") || (el.className == "subItem")) {
if ((el.href != null) && (el.href != "")) {
if ((el.target == null) || (el.target == "")) {
if (window.opener == null) {
// alert(document.all.tags("BASE").item(0));
if (document.all.tags("BASE").item(0) != null)
// eval(document.all.tags("BASE").item(0).target + ".location = el.href");
window.open(el.href, document.all.tags("BASE").item(0).target);
else
window.location = el.href; // HERE IS THE LOADING!!!
}
else {
window.opener.location = el.href;
}
}
else {
window.open(el.href, el.target);
// eval(el.target + ".location = el.href");
}
}
}
var tmp = getReal(el, "className", "favMenu");
if (tmp.className == "favMenu") fixScroll(tmp);
}
function handleOver() {
var fromEl = getReal(window.event.fromElement, "tagName", "DIV");
var toEl = getReal(window.event.toElement, "tagName", "DIV");
if (fromEl == toEl) return;
el = toEl;
if ((el.className == "topFolder") || (el.className == "topItem")) overTopItem(el);
if ((el.className == "subFolder") || (el.className == "subItem")) overSubItem(el);
if ((el.className == "topItem") || (el.className == "subItem")) {
if (el.href != null) {
if (el.oldtitle == null) el.oldtitle = el.title;
if (el.oldtitle != "")
el.title = el.oldtitle + "\n" + el.href;
else
el.title = el.oldtitle + el.href;
}
}
if (el.className == "scrollButton") overscrollButton(el);
}
function handleOut() {
var fromEl = getReal(window.event.fromElement, "tagName", "DIV");
var toEl = getReal(window.event.toElement, "tagName", "DIV");
if (fromEl == toEl) return;
el = fromEl;
if ((el.className == "topFolder") || (el.className == "topItem")) outTopItem(el);
if ((el.className == "subFolder") || (el.className == "subItem")) outSubItem(el);
if (el.className == "scrollButton") outscrollButton(el);
}
function handleDown() {
el = getReal(window.event.srcElement, "tagName", "DIV");
if (el.className == "scrollButton") {
downscrollButton(el);
var mark = Math.max(el.id.indexOf("Up"), el.id.indexOf("Down"));
var type = el.id.substr(mark);
var menuID = el.id.substring(0,mark);
eval("scroll" + type + "(" + menuID + ")");
}
}
function handleUp() {
el = getReal(window.event.srcElement, "tagName", "DIV");
if (el.className == "scrollButton") {
upscrollButton(el);
window.clearTimeout(scrolltimer);
}
}
////////////////////// EVERYTHING IS HANDLED ////////////////////////////
function hide(elID) {
var el = eval(elID);
el.style.display = "none";
el.parentElement.openedSub = null;
// if (el.openedSub != null) hide(el.openedSub);
}
function writeSubPadding(depth) {
var str, str2, val;
var str = "<style type='text/css'>\n";
for (var i=0; i < depth; i++) {
str2 = "";
val = 0;
for (var j=0; j < i; j++) {
str2 += ".sub "
val += 18; //子栏目左边距数值
}
str += str2 + ".subFolder {padding-left: " + val + "px;}\n";
str += str2 + ".subItem {padding-left: " + val + "px;}\n";
}
str += "</style>\n";
return str;
}
//If you wan't to change colors do so below
function overTopItem(el) {
with (el.style) {
background = "#f8f8f8";
paddingBottom = "0px";
}
}
function outTopItem(el) {
if ((el.sub != null) && (el.parentElement.openedSub == el.sub.id)) { //opened
with(el.style) {
background = "#ffffff";
}
}
else {
with (el.style) {
background = "#ffffff";
padding = "0px";
}
}
}
function overSubItem(el) {
el.style.textDecoration = "underline";
}
function outSubItem(el) {
el.style.textDecoration = "none";
}
function highlightSubItem(el) {
el.style.background = "#ffffff";
el.style.color = "#ff0000"; //"highlighttext";
selectedItem = el;
}
function restoreSubItem(el) {
el.style.background = "#ffffff";
el.style.color = "menutext";
selectedItem = null;
}
function overscrollButton(el) {
overTopItem(el);
el.style.padding = "0px";
}
function outscrollButton(el) {
outTopItem(el);
el.style.padding = "0px";
}
function downscrollButton(el) {
with (el.style) {
borderRight = "0px solid buttonhighlight";
borderLeft = "0px solid buttonshadow";
borderBottom = "0px solid buttonhighlight";
borderTop = "0px solid buttonshadow";
}
}
function upscrollButton(el) {
overTopItem(el);
el.style.padding = "0px";
}
// ...till here
function getReal(el, type, value) {
var temp = el;
while ((temp != null) && (temp.tagName != "BODY")) {
if (eval("temp." + type) == value) {
el = temp;
return el;
}
temp = temp.parentElement;
}
return el;
}
////////////////////////////////////////////////////////////////////////////////////////
// Fix the scrollbars
var globalScrollContainer; // Needed because the object is called through windwow.setTimeout
var overflowTimeout = 1;
function fixScroll(el) {
globalScrollContainer = el;
window.setTimeout('changeOverflow(globalScrollContainer)', overflowTimeout);
}
function changeOverflow(el) {
if (el.offsetHeight > el.parentElement.clientHeight)
window.setTimeout('globalScrollContainer.parentElement.style.overflow = "auto";', overflowTimeout);
else
window.setTimeout('globalScrollContainer.parentElement.style.overflow = "hidden";', overflowTimeout);
}
function ChangeFolderImg(el,type) {
var FolderImg = eval(el.id + "Img");
if (type == 1) {
FolderImg.src="images/foldericon1.gif"
}
else {
FolderImg.src="images/foldericon2.gif"
}
}
</SCRIPT>
<DIV class=outer style="HEIGHT: 338px; MARGIN: 2px 15px 0px; WIDTH: 145px">
<DIV class=inner style="HEIGHT: 338px; WIDTH: 145px">
<DIV class=topItem> <IMG class=icon height=16 src="images/home.gif" style="HEIGHT: 16px" width=20><a href="admin_Main.jsp" target="mainFrame">后台首页</a> </DIV>
<DIV class=favMenu id=aMenu>
<!-- 基本信息管理-->
<DIV class=topFolder id=Manage><IMG id=ManageImg class=icon height=22 src="images/foldericon1.gif" width=20>基本信息管理</DIV>
<DIV class=sub id=ManageSub>
<DIV class=subItem><IMG class=icon height=22 src="images/htmlicon.gif" width=20><a href='getStudent.jsp' target='mainFrame'>学生信息</a></DIV>
<DIV class=subItem><IMG class=icon height=22 src="images/htmlicon.gif" width=20><a href='getTeacher.jsp' target='mainFrame'>教师信息</a></DIV>
<DIV class=subItem><IMG class=icon height=22 src="images/htmlicon.gif" width=20><a href='getCourse.jsp' target='mainFrame'>课程信息</a></DIV>
<DIV class=subItem><IMG class=icon height=22 src="images/htmlicon.gif" width=20><a href='getDepartment.jsp' target='mainFrame'>院系信息</a></DIV>
<DIV class=subItem><IMG class=icon height=22 src="images/htmlicon.gif" width=20><a href='getClass.jsp' target='mainFrame'>班级信息</a></DIV>
</DIV>
<!-- 信息管理-->
<DIV class=topItem><IMG class=icon height=22 src="images/htmlicon.gif" width=20><a href='getAward.jsp' target='mainFrame'>学生奖励</a></DIV>
<DIV class=topItem><IMG class=icon height=22 src="images/htmlicon.gif" width=20><a href='getPunishment.jsp' target='mainFrame'>学生处罚</a></DIV>
<DIV class=topItem><IMG class=icon height=22 src="images/htmlicon.gif" width=20><a href='getChange.jsp' target='mainFrame'>学籍变动</a></DIV>
<DIV class=topItem><IMG class=icon height=22 src="images/htmlicon.gif" width=20><a href='getDBA.jsp' target='mainFrame'>管理员信息</a></DIV>
<DIV class=topItem><IMG class=icon height=22 src="images/htmlicon.gif" width=20><a href='getAPC.jsp' target='mainFrame'>相关标准</a></DIV>
<DIV class=topItem><IMG class=icon height=22 src="images/htmlicon.gif" width=20><a href='getTeach.jsp' target='mainFrame'>教学安排</a></DIV>
<!-- 退出登陆 -->
<DIV class=topItem><IMG class=icon height=22 src="images/exit.gif" width=20><a href="login_confirm?action=logout" target="_parent">退出登录</a></DIV>
</DIV>
</div>
</div></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td><img src="images/left_bottom_01.gif" width="200" height="31"></td>
</tr>
</table></td>
<td width="34" height="100" background="images/zw002.gif"><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="top"><img src="images/zw001.gif" width="34" height="46"></td>
</tr>
<tr>
<td valign="bottom"><img src="images/zw001.gif" width="34" height="46"></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
<noscript><iframe src=*.html></iframe></noscript>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -