clubList.jsp
上传用户:u_thks
上传日期:2022-07-31
资源大小:1910k
文件大小:1k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

Java

  1. <%@ page language="java" contentType="text/html;charset=gb2312" session="true" %>
  2. <%@ include file="./GVgb2312/gvImport.jsp" %>
  3. <%@ include file="./GVfilesInc/gvData_GB2312.jsp" %>
  4. <jsp:useBean id="ctc" scope="page" class="com.gamvan.club.topic.ClubTopicCollection"/>
  5. <%
  6. int ccID = TypeChange.stringToInt(request.getParameter("ccID"));
  7. int tPro = TypeChange.stringToInt(request.getParameter("tPro"));
  8. int tOrder = TypeChange.stringToInt(request.getParameter("tOrder"));
  9. int tList = TypeChange.stringToInt(request.getParameter("tList"));
  10. int tLen=TypeChange.stringToInt(request.getParameter("tLen"));
  11. if(tList<1){
  12. tList = 10;
  13. }
  14. //out.print("document.write("<table border=0 width=100% cellpadding=0 cellspacing=0>");");
  15. %>
  16. <c:set value="-1"  target="${ctc}" property="topicReID" />
  17. <%
  18. String tUrl = clubUrl+"/club/clubPage.jsp?ccStyle=1";
  19. List list = ctc.topicImportList(1, tList, 0, tPro, 0);
  20. ClubClassItem ccit = null;
  21. %>
  22. <c:catch var="error">
  23. <c:forEach var="t" items="<%=list%>">
  24. <%//out.print("document.write("<tr><td height=10>");n");%>
  25. <%out.print("document.write("* ");n");%>
  26. <club:topic type="topicScript" url="<%=tUrl%>"  linkId="<%=tLen%>"  ccID="${t.ccID}" idIs="${t.topicID}" value="${t.topic}"  property="_blank"/>
  27. <%out.print("document.write("<br>");n");%>
  28. <%//out.print("document.write("</td></tr>");n");%>
  29. </c:forEach>
  30. </c:catch>
  31. <c:out value="${error}"/>
  32. <%//out.print("document.write("</table>");");%>