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

Java书籍

开发平台:

Java

  1. <%@ page contentType="text/html;charset=GBK"%>
  2. <%@ include file="INC/const.jsp"%>
  3. <%@ page import = "java.util.Vector"%>
  4. <%
  5. stats=forumName+"论坛收藏夹.";
  6. forumID=ParamUtil.getInt(request,"forumID",0);
  7. %>
  8. <%@ include file="INC/theme.jsp"%>
  9. <%
  10. out.println(headLine(1,forumName,forumLogo,"",1,stats));
  11. %>
  12. <%
  13. try{
  14. if(!foundUser)
  15. throw new Exception("您还没有<a href=login.jsp>登录</a>。");
  16. ForumBookMark.addFav(request);
  17. %>
  18.     <table cellpadding=0 cellspacing=0 border=0 width=<%=tableWidth%> bgcolor=<%=tableBackColor%> align=center>
  19.         <tr>
  20.             <td>
  21.                 <table cellpadding=3 cellspacing=1 border=0 width=100%>
  22.     <tr align="center"> 
  23.       <td width="100%" bgcolor=<%=tableTitleColor%>><font color="<%=tableFontColor%>">成功:帖子收藏</font></td>
  24.     </tr>
  25.     <tr> 
  26.       <td width="100%" bgcolor=<%=tableBodyColor%>><font color="<%=tableContentColor%>"><b>本帖子已经收入您在论坛的<a href=favlist.jsp>收藏夹</a></b><br><br></font>
  27.       </td>
  28.     </tr>
  29.     <tr align="center"> 
  30.       <td width="100%" bgcolor=<%=tableTitleColor%>>
  31. <a href="javascript:history.go(-1)"> << 返回上一页</a>
  32.       </td>
  33.     </tr>  
  34.     </table>   </td></tr></table>
  35. <%
  36. }
  37. catch(Exception e){
  38. e.printStackTrace();
  39. String errMsg=e.getMessage();
  40. %>
  41. <%@include file="INC/error.jsp"%>
  42. <%
  43. }%>
  44. <%@ include file="foot.jsp"%>