shortmessage.jsp

来自「JiveJdon 3.0不只是一个论坛程序」· JSP 代码 · 共 61 行

JSP
61
字号
<%@ taglib uri="struts-logic" prefix="logic"%>
<%@ taglib uri="struts-bean" prefix="bean"%>
<%@ taglib uri="struts-html" prefix="html"%>
<%@ taglib uri="struts-tiles" prefix="tiles"%>
<%@ taglib uri="/WEB-INF/MultiPages.tld" prefix="MultiPages"%>
<%@ page contentType="text/html; charset=UTF-8"%>

<bean:define id="title" value="系统消息" />
<%@ include file="../common/IncludeTop.jsp"%>
<link rel="stylesheet" href="<html:rewrite page="/shortmsg_css.jsp"/>"
	type="text/css">
<script type="text/javascript">
	function showItem(url) {
		// Update the contents of the product IFRAME with the specified url
		document.getElementById("product").src = url;
	}
</script>
<table cellpadding="0" cellspacing="0" border="0" width="100%">
	<tr>
		<td valign="top" width="99%">
			<%@include file="../../forum/nav.jsp"%>
			<br>
		</td>
		<td valign="top" align="center">
		</td>
	</tr>
</table>
<hr />
<div id="shortmessage_vertmenu">
	<h1>
		短消息
	</h1>
	<ul>
		<li>
			<a
				href="javascript:showItem('<%=request.getContextPath()%>/account/protected/shortmessageAction.shtml')"
				tabindex="1">写信息</a>
		</li>
		<li>
			<a
				href="javascript:showItem('<%=request.getContextPath()%>/account/protected/receiveListAction.shtml?count=10')"
				tabindex="2">收件箱</a>
		</li>
		<li>
			<a
				href="javascript:showItem('<%=request.getContextPath()%>/account/protected/sendListAction.shtml?count=10')"
				tabindex="3">发送箱</a>
		</li>
		<li>
			<a
				href="javascript:showItem('<%=request.getContextPath()%>/account/protected/draftListAction.shtml?count=10')"
				tabindex="4">草稿箱</a>
		</li>
	</ul>
</div>
<div id="shortmessage_content">
	<iframe width="100%" height="100%" id="product" frameborder="0"		
		src="<%=request.getContextPath()%>/account/protected/receiveListAction.shtml?count=5"></iframe>
</div>
<%@include file="../common/IncludeBottom.jsp"%>

⌨️ 快捷键说明

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