thread.jsp

来自「Jive是基于JSP/JAVA技术构架的一个大型BBS论坛系统,这是Jive论坛」· JSP 代码 · 共 38 行

JSP
38
字号
<%/** *	$RCSfile: thread.jsp,v $ *	$Revision: 1.2 $ *	$Date: 2002/04/30 14:41:55 $ */%><%@ page import="java.util.*,                 com.jivesoftware.forum.*,                 com.jivesoftware.forum.util.*"    errorPage="error.jsp"%><%@ include file="global.jsp" %><%  // Put the request URI and query string in the session as an attribute.    // This is done so the error.jsp and auth.jsp pages can figure out what    // page sent it an error and redirect appropriately.    setRedirectURL(request);%><%  // Indicate if we show the list of messages as a threaded list	boolean showThreaded = "threaded".equals(JiveGlobals.getJiveProperty("skin.default.threadMode"));%><%-- dynamic include here --%><%  // Show a threaded view    if (showThreaded) { %>    <jsp:forward page="threadMode1.jsp" />    <%  }    // Show a flat view    else { %>    <jsp:forward page="threadMode2.jsp" />    <%  } %>

⌨️ 快捷键说明

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