pm.jsp
来自「论坛软件系统亦称电子公告板(BBS)系统」· JSP 代码 · 共 25 行
JSP
25 行
<%@ 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> » 短消息</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 + =
减小字号Ctrl + -
显示快捷键?