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

Java书籍

开发平台:

Java

  1. <%@ page contentType="text/html;charset=GBK"%>
  2. <%@ page import="net.acai.util.*,
  3.  net.acai.forum.*,
  4.  net.acai.forum.util.*,
  5.  java.util.Vector"%>
  6. <%@ include file="INC/const.jsp"%>
  7. <HTML><HEAD><TITLE><%=forumName%>--显示贴子</TITLE>
  8. <META content="text/html; charset=gb2312" http-equiv=Content-Type>
  9. <link rel="stylesheet" type="text/css" href="forum.css">
  10. <META content="Microsoft FrontPage 4.0" name=GENERATOR></HEAD>
  11. <BODY bgcolor="#ffffff" alink="#333333" vlink="#333333" link="#333333" topmargin="10" leftmargin="10">
  12. <%
  13. try{
  14. Vector forumMSGs=Forum.getForumTextMSGs(request);
  15. if(forumMSGs.size()==0)
  16. throw new Exception("没有此类帖子!");
  17. forumID=ParamUtil.getInt(request,"forumID");
  18. int rootID=ParamUtil.getInt(request,"rootID");
  19. ForumMSG theTopicMSG=(ForumMSG)forumMSGs.get(0);
  20. Forum theForum=new Forum(forumID);
  21. %>
  22. <TABLE border=0 width="<%=tableWidth%>" align=center>
  23.   <TBODY>
  24.   <TR>
  25.     <TD valign=middle align=top>
  26. <b>以文本方式查看主题</b><br><br>
  27. -&nbsp;&nbsp;<b><%=forumName%></b>&nbsp;&nbsp;(<%=hostURL%><%=forumURL%>index.jsp)<br>
  28. --&nbsp;&nbsp;<b><%=theForum.getForumType()%></b>&nbsp;&nbsp;(<%=hostURL%><%=forumURL%>list.jsp?forumID=<%=forumID%>)<br>
  29. ----&nbsp;&nbsp;<b><%=theTopicMSG.getNoFilterTopic()%></b>&nbsp;&nbsp;(<%=hostURL%><%=forumURL%>dispbbs.jsp?forumID=<%=forumID%>&rootID=<%=rootID%>&announceID=<%=rootID%>)
  30.       </TD></TR></TBODY></TABLE> 
  31. <br>
  32. <hr>
  33. <%
  34. for(i=0;i<forumMSGs.size();i++){
  35. ForumMSG theMSG=(ForumMSG)forumMSGs.get(i);
  36. %>
  37. <TABLE border=0 width="750" align=center>
  38.   <TBODY>
  39.   <TR>
  40.     <TD valign=middle align=top>
  41. --&nbsp;&nbsp;作者:<%=theMSG.getUserName()%><br>
  42. --&nbsp;&nbsp;发布时间:<%=theMSG.getDateAndTime()%><br><br>
  43. --&nbsp;&nbsp;<%=theMSG.getTopic()%><br>
  44. <%=theMSG.getBody()%>
  45. <hr>
  46.     </TD></TR></TBODY></TABLE> 
  47. <%
  48. }
  49. %>
  50. <%
  51. }
  52. catch(Exception e){
  53. e.printStackTrace();
  54. String errMsg=e.getMessage();
  55. %>
  56. <%@include file="INC/error.jsp"%>
  57. <%
  58. }%>
  59. <%@ include file="foot.jsp"%>