📄 side.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" errorPage="" %>
<%@ taglib uri="struts-html" prefix="html" %>
<%@ taglib uri="struts-bean" prefix="bean" %>
<%@ taglib uri="struts-logic" prefix="logic" %>
<%@ taglib uri="office" prefix="office" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>功能栏</title>
</head>
<body>
<table cellspacing="0" cellpadding="7" bordercolor=gray bordercolorlight=gray bordercolordark=balck>
<tr>
<td heigth="20" width="200" background="<%=request.getContextPath()%>/image/welcome1.jpg">欢迎登录! <a href="<%=request.getContextPath()%>/person/person_myself_look.do">[个人信息]</a></td>
</tr>
<tr>
<td height="100" align="center" background="<%=request.getContextPath()%>/image/welcome2.jpg">
<table background="<%=request.getContextPath()%>/image/person.jpg" width="179" height="96" border="2" cellspacing="0" cellpadding="3" bordercolor="gray" bordercolorlight="gray" bordercolordark="#7C8BD0">
<logic:present name="logonuser">
<tr><td height="10" colspan=2 style="border:0"></td></tr>
<tr bordercolor="#CCCCCC">
<td height="20" align="right" style="border:1">欢 迎 您:</td>
<td height="20" style="border:1"><b><bean:write name="logonuser" property="username"/></b></td>
</tr>
<tr bordercolor="#CCCCCC">
<td height="20" align="right" style="border:1">身 份:</td>
<td height="20" style="border:1"><logic:equal value="2" name="logonuser" property="userable">
系统管理员
</logic:equal>
<logic:equal value="1" name="logonuser" property="userable">
普通管理员
</logic:equal>
<logic:equal value="0" name="logonuser" property="userable">
游客
</logic:equal>
</td>
</tr>
<tr bordercolor="#CCCCCC">
<td height="20" align="right" style="border:1"><nobr>职 务:</nobr></td>
<td height="20" style="border:1"><bean:write name="logonuser" property="userjob"/></td>
</tr>
<tr bordercolor="#CCCCCC">
<td height="20" align="right" style="border:1"><font color="black"><nobr>访问次数:</nobr></td>
<td height="20" style="border:1"><bean:write name="logonuser" property="useraccesstimes"/> 次</td>
</tr>
</logic:present>
<logic:notPresent name="logonuser">
<tr>
<td height="70" align="center">
<logic:present parameter="exit">您已经安全退出,请关闭浏览器!</logic:present>
<logic:notPresent parameter="exit"> 非法登录!<a href="<%=request.getContextPath()%>/index.jsp">[请正常登录]!</a></logic:notPresent>
</td>
</tr>
</logic:notPresent>
</table>
</td>
</tr>
<tr>
<td height="20" background="<%=request.getContextPath()%>/image/do.jpg"> 我能做什么?</td>
</tr>
<office:Menu/>
<tr>
<td height="40" background="<%=request.getContextPath()%>/image/exit.jpg"> <a href="<%=request.getContextPath()%>/logoff.do"><b>退出</b></a></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -