frame.jsp

来自「一个基于spring」· JSP 代码 · 共 78 行

JSP
78
字号
<%@ page contentType="text/html; charset=UTF-8"%><%@ taglib prefix="s" uri="/struts-tags"%><%@ page import="com.demo.struts2.util.Constants"%><%@ taglib uri="http://www.opensymphony.com/sitemesh/decorator"	prefix="decorator"%><html><head><title>Demo - <decorator:title default="Welcome!" /></title><link rel="stylesheet" type="text/css" href="styles.css"><decorator:head /></head><body><div align="center"><%if (session.getAttribute(Constants.USERNAME_KEY) != null) {%><table width="100%">	<tr>		<td><img src='images/<s:text name="image.logo" />'></td>		<td><img src='images/<s:text name="image.banner" />' height="90"></td>	</tr>	<tr>		<td colspan="2">		<hr>		</td>	</tr>	<tr>		<td width="160" bgcolor="#EEEEEE" valign="top">		<table width="100%">			<tr>				<td>				<li><a href="welcome.do"><s:text name="frame.main" /></a></li>				</td>			</tr>			<tr>				<td>				<li><a href="address!init.do"><s:text name="frame.address" /></a></li>				</td>			</tr>			<tr>				<td>				<li><a href="schedule!init.do"><s:text name="frame.schedule" /></a></li>				</td>			</tr>			<tr>				<td>				<li><a href="worklog!init.do"><s:text name="frame.worklog" /></a></li>				</td>			</tr>			<tr>				<td>				<li><a href="sms!init.do"><s:text name="frame.sms" /></a></li>				</td>			</tr>			<tr>				<td>				<li><a href="notice!init.do"><s:text name="frame.notice" /></a></li>				</td>			</tr>			<tr>				<td>				<li><a href="meeting!init.do"><s:text name="frame.meeting" /></a></li>				</td>			</tr>			<tr>				<td>				<li><a href="logout.do"><s:text name="frame.logout" /></a></li>				</td>			</tr>		</table>		</td>		<td align="left" valign="top"><decorator:body /></td>	</tr></table><%} else {%> <decorator:body /> <%}%><hr>2007copyright abc@163.com</div></body></html>

⌨️ 快捷键说明

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