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

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

开发平台:

Java

  1. <%@ page language="java" contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="./GVinc/gvImport.jsp" %>
  3. <jsp:useBean id="ctc" scope="page" class="com.gamvan.club.topic.ClubTopicCollection"/>
  4. <%
  5. /*
  6. * tPro 1为精品话题 2为置顶推荐话题
  7. * order 1按回复倒序排列 2按最新回复倒序  默认按照发表时间倒序排列
  8. * tLen 从左截取字符数
  9. * tList 显示的行数
  10. */
  11. ccID = TypeChange.stringToInt(request.getParameter("ccID"));
  12. int tPro = TypeChange.stringToInt(request.getParameter("tPro"));
  13. int tOrder = TypeChange.stringToInt(request.getParameter("tOrder"));
  14. int tList = TypeChange.stringToInt(request.getParameter("tList"));
  15. int tLen=TypeChange.stringToInt(request.getParameter("tLen"));
  16. String mood=request.getParameter("mood");
  17. if(tList<1){
  18. tList = 10;
  19. }
  20. %>
  21. <c:set value="-1"  target="${ctc}" property="topicReID" />
  22. <%
  23. String tUrl = clubUrl+"/club/clubPage.jsp?ccStyle=1";
  24. List list = ctc.topicImportList(1, tList, ccID, tPro, tOrder);
  25. ClubClassItem ccit = null;
  26. %>
  27. <c:catch var="error">
  28. <c:forEach var="t" items="<%=list%>">
  29. <%
  30. if(mood.equals("1")){
  31. %>
  32. <club:topic type="img_listMoodScript"  value="${t.topicMood}"/>
  33. <%}else{
  34. out.print("document.write(""+mood+"  ");n");
  35. }
  36. %>
  37. <club:topic type="topicScript" url="<%=tUrl%>"  linkId="<%=tLen%>"  ccID="${t.ccID}" idIs="${t.topicID}" value="${t.topic}"  property="_self"/>
  38. <%out.print("document.write("<br>");n");%>
  39. </c:forEach>
  40. </c:catch>
  41. <c:out value="${error}"/>