forumList.jsp
上传用户:yuyunping
上传日期:2013-03-21
资源大小:1844k
文件大小:1k
源码类别:

Java书籍

开发平台:

Java

  1. <%
  2. try{
  3. Vector gateWayVector=GateWayFactory.getGateWays();
  4. for( i=0;i<gateWayVector.size();i++)
  5. {
  6.      GateWay gateWay=(GateWay)gateWayVector.get(i);
  7.      int gateWayID=gateWay.getGateWayID();
  8.      String gateWayName=gateWay.getGateWayName();
  9. out.println("<option style=BACKGROUND-COLOR:#99ccff>╋ "+gateWayName+"</option>");
  10. try{
  11. Vector forumVector=ForumFactory.getForums(gateWayID);
  12. for(int j=0;j<forumVector.size();j++){
  13. Forum theListForum=(Forum)forumVector.get(j);
  14. out.println("<option");
  15. if(forumID==theListForum.getForumID())
  16. out.println("selected");
  17. out.println("value=""+theListForum.getForumID()+""> ├"+theListForum.getForumType()+"</option>");
  18. }
  19. }
  20. catch(Exception e){
  21. e.printStackTrace();
  22. }
  23. }
  24. }
  25. catch(Exception e){
  26. e.printStackTrace();
  27. }
  28. %>