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

📄 header.jsp

📁 论坛系统EasyJForum 是一个基于 Java 技术的免费社区论坛软件系统
💻 JSP
字号:
<%@ page contentType="text/html;charset=gbk" errorPage="../error.jsp"%>
<%@ page import="com.hongshee.ejforum.util.PageUtils"%>
<%@ page import="com.hongshee.ejforum.data.UserDAO.UserInfo"%>
<%
	UserInfo userinfo = PageUtils.getAdminUser(request, response);
	if (userinfo == null) return;
%>
<!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>
<TITLE>EasyJForum 后台管理</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<LINK id=css href="style/admin.css" type=text/css rel=stylesheet>
<SCRIPT>
var menus = new Array('basic', 'forums', 'users', 'tools');
function toggleMenu(id) 
{
	if(parent.menu) {
		for(k in menus) {
			if(parent.menu.document.getElementById(menus[k])) 
				parent.menu.document.getElementById(menus[k]).style.display = menus[k] == id ? '' : 'none';
		}
	}
}
function setModule(n) 
{
	var titles = document.getElementsByTagName('li');
	for(var i = 0; i < titles.length; i++) 
	{
		titles[i].id = '';
	}
	titles[n].id = 'menuon';
}
</SCRIPT>
</HEAD>
<BODY>
<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0 style="BACKGROUND: url(images/header_bg.gif) repeat-x">
  <TBODY>
  <TR>
    <TD width=160 rowSpan=2>
	  <div style="PADDING-LEFT: 30px; HEIGHT: 50px; padding-top:10px">	
	  <SPAN style="FONT-WEIGHT: bold; FONT-SIZE:13px; COLOR: #ffffff; TEXT-DECORATION: none">EasyJForum<BR>后台管理</SPAN></div></TD>
    <TD>
      <DIV class=topmenu>
      <UL>
        <LI<%= userinfo.groupID=='A'?"":" style='display:none'" %>><SPAN><A href="#" 
        	onclick="setModule(0); toggleMenu('basic'); parent.main.location='basic/baseinfo.jsp';return false;">论坛设置</A>
		</SPAN></LI>
        <LI><SPAN><A href="#" 
        	onclick="setModule(1); toggleMenu('forums'); parent.main.location='forums/log_report.jsp';return false;">论坛管理</A>
		</SPAN></LI>
        <LI><SPAN><A href="#" 
	        onclick="setModule(2); toggleMenu('users'); parent.main.location='users/user_edit.jsp';return false;">用户管理</A>
		</SPAN></LI>
        <LI <%= userinfo.groupID=='A'?"":" style='display:none'" %>><SPAN><A href="#" 
	        onclick="setModule(3); toggleMenu('tools'); parent.main.location='tools/send_notice.jsp';return false;">系统工具</A>
		</SPAN></LI>
	  </UL></DIV></TD></TR></TBODY></TABLE>
<SCRIPT>
	setModule(1);
	toggleMenu("forums");
	parent.main.location='./home.jsp';
</SCRIPT>
</BODY></HTML>

⌨️ 快捷键说明

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