📄 index_admin.jsp
字号:
<%@ page import="com.everstar.usermanage.*" %>
<%
HttpSession AuthInfoPool=request.getSession();
boolean logined = Auth.islogin(AuthInfoPool);
if (!Auth.checkAdmin(AuthInfoPool))
response.sendRedirect("login.jsp");
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Administrator</title>
</head>
<frameset rows="85,90%" bordercolor="#0099cc" border="0" frameborder="0" framespacing="0" style="background-color:#0099cc">
<frame src="header.jsp" name="header" scrolling="no" marginheight="0" marginwidth="0" noresize>
<frameset cols="25%,75%" bordercolor="#0099cc" border="0" frameborder="0" style="background-color:#0099cc">
<frame src="left.jsp" name="sidebar" scrolling="yes" target="main" marginheight="0" marginwidth="0" noresize>
<frame src="main.jsp" name="main" scrolling="no" noresize>
</frameset>
</frameset>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -