📄 clublist.jsp
字号:
<%@ page language="java" contentType="text/html;charset=gb2312" session="false" %><%@
include file="./GVgb2312/gvImport.jsp" %>
<jsp:useBean id="ctr" scope="page" class="com.gamvan.club.topic.ClubTopicResults"/>
<%
int ccID = TypeChange.stringToInt(request.getParameter("ccID"));
int tPro = TypeChange.stringToInt(request.getParameter("tPro"));
int tOrder = TypeChange.stringToInt(request.getParameter("tOrder"));
int tList = TypeChange.stringToInt(request.getParameter("tList"));
int tLen=TypeChange.stringToInt(request.getParameter("tLen"));
if(tList<1){
tList = 10;
}
String tUrl = clubUrl+"/club/clubPage.jsp?ccStyle=1";
ctr.setTopicReID(-1);
List list = ctr.topicImportList(1, tList, tOrder, ccID, tPro);
ClubClassItem ccit = null;
%><c:catch var="error">
<c:forEach var="t" items="<%=list%>">
<%out.print("document.write(\"<li>·\");\n");%>
<club:topic type="topicScript" url="<%=tUrl%>" linkId="<%=tLen%>" ccID="${t.ccID}" idIs="${t.topicID}" value="${t.topic}" property="_blank"/>
<%out.print("document.write(\"</li>\");\n");%>
</c:forEach>
<%
list = null;
%>
</c:catch>
<c:out value="${error}"/>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -