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

Java书籍

开发平台:

Java

  1. <%@ page contentType="text/html;charset=GBK"%>
  2. <%@ include file="INC/const.jsp"%>
  3. <%@ page import = "java.util.Vector,
  4. net.acai.forum.admin.*"%>
  5. <title><%=forumName%>--管理页面</title>
  6. <link rel="stylesheet" type="text/css" href="forum.css">
  7. <BODY bgcolor="#ffffff" alink="#333333" vlink="#333333" link="#333333" topmargin="20">
  8. <%
  9. try{
  10. if(session.getAttribute("adminFlag")==null)
  11. throw new Exception("本页面为管理员专用,请<a href=elogin.jsp>登陆管理</a>后进入。");
  12. String action=ParamUtil.getString(request,"action");
  13. %>
  14. <table cellpadding=0 cellspacing=0 border=0 width=95% bgcolor=<%=aTableBackColor%> align=center>
  15.   <tr>
  16.     <td>
  17.       <table cellpadding=3 cellspacing=1 border=0 width=100%>
  18.         <tr bgcolor='<%=aTableTitleColor%>'>
  19.         <td align=center colspan="2">欢迎<b><%=session.getAttribute("adminFlag")%></b>进入管理页面
  20.         </td>
  21.         </tr>
  22.             <tr bgcolor=<%=tableBodyColor%>>
  23.               <td width="20%" valign=top>
  24. <%@include file="admin_left.jsp"%>
  25.       </td>
  26.               <td width="80%" valign=top><p>
  27. <%
  28. if(action!=null&&"update".equals(action)){
  29. ForumAdmin forumAdmin=new ForumAdmin();
  30. out.println(forumAdmin.update()+"<br>操作成功!");
  31.   }
  32. else{
  33. %>
  34.               <table width="100%" border="0" cellspacing="3" cellpadding="0">
  35.                 <tr> 
  36.                   <td bgcolor=<%=aTableTitleColor%>> 
  37.                     <p><b>更新论坛数据</b>:<br>
  38.                       注意:这里将重新统计所有论坛的最新帖子、最新发表时间、发表帖子数等信息。</p>
  39.                   </td>
  40.                 </tr>
  41.                 <tr> 
  42.                   <td> 
  43.             <form action="admin_updateboard.jsp?action=update" method=post>
  44. <input type="submit" name="Submit" value="更新">
  45.     </form>
  46.                   </td>
  47.                 </tr>
  48. <%
  49. }
  50. %>
  51. </p></td>
  52.             </tr>
  53.         </table>
  54.         </td>
  55.     </tr>
  56. </table>
  57. <%
  58. }
  59. catch(Exception e){
  60. e.printStackTrace();
  61. String errMsg=e.getMessage();
  62. %>
  63. <%@include file="INC/error.jsp"%>
  64. <%
  65. }%>
  66. <%@ include file="foot.jsp"%>