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

📄 pm.jsp

📁 论坛软件系统亦称电子公告板(BBS)系统
💻 JSP
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c"%>
<jsp:include flush="true" page="header.jsp" />
<script src="include/javascript/viewthread.js" type="text/javascript"></script>
<script type="text/javascript">zoomstatus = parseInt(1);</script>
<div class="container">
	<div id="foruminfo">
		<div id="nav"><a href="${settings.indexname}"> ${settings.bbname} </a> &raquo; 短消息</div>
	</div>
	<div class="content">
		<c:choose>
			<c:when test="${param.action==null||param.action==''}"><jsp:include flush="true" page="pm_folder.jsp" /></c:when>
			<c:when test="${param.action=='view'}"><jsp:include flush="true" page="pm_view.jsp" /></c:when>
			<c:when test="${param.action=='send'}"><jsp:include flush="true" page="pm_send.jsp" /></c:when>
			<c:when test="${param.action=='search'}">
				<c:if test="${param.searchid==null}"><jsp:include flush="true" page="pm_search.jsp" /></c:if>
				<c:if test="${param.searchid!=null}"><jsp:include flush="true" page="pm_search_result.jsp" /></c:if>
			</c:when>
			<c:when test="${param.action=='archive'}"><jsp:include flush="true" page="pm_archive.jsp" /></c:when>
			<c:when test="${param.action=='ignore'}"><jsp:include flush="true" page="pm_ignore.jsp" /></c:when>
		</c:choose>
	</div>
	<div class="side"><jsp:include flush="true" page="personal_navbar.jsp" /></div>
</div>
<jsp:include flush="true" page="footer.jsp" />

⌨️ 快捷键说明

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