⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 editforum.jsp

📁 java servlet著名论坛源代码
💻 JSP
字号:
<%--
 - $Header: /cvsroot/mvnforum/mvnforum/srcweb/mvnplugin/mvnforum/admin/editforum.jsp,v 1.29 2004/03/25 02:59:13 minhnn Exp $
 - $Author: minhnn $
 - $Revision: 1.29 $
 - $Date: 2004/03/25 02:59:13 $
 -
 - ====================================================================
 -
 - Copyright (C) 2002-2004 by MyVietnam.net
 -
 - This program is free software; you can redistribute it and/or
 - modify it under the terms of the GNU General Public License
 - as published by the Free Software Foundation; either version 2
 - of the License, or any later version.
 -
 - All copyright notices regarding mvnForum MUST remain intact
 - in the scripts and in the outputted HTML.
 - The "powered by" text/logo with a link back to
 - http://www.mvnForum.com and http://www.MyVietnam.net in the
 - footer of the pages MUST remain visible when the pages
 - are viewed on the internet or intranet.
 -
 - This program is distributed in the hope that it will be useful,
 - but WITHOUT ANY WARRANTY; without even the implied warranty of
 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 - GNU General Public License for more details.
 -
 - You should have received a copy of the GNU General Public License
 - along with this program; if not, write to the Free Software
 - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 -
 - Support can be obtained from support forums at:
 - http://www.mvnForum.com/mvnforum/index
 -
 - Correspondence and Marketing Questions can be sent to:
 - info@MyVietnam.net
 -
 - @author: Minh Nguyen  minhnn@MyVietnam.net
 - @author: Mai  Nguyen  mai.nh@MyVietnam.net
 --%>
<%@ page contentType="text/html;charset=utf-8" %>
<%@ page errorPage="fatalerror.jsp"%>
<%@ page import="java.util.*" %>
<%@ page import="com.mvnforum.db.*" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<%@ include file="inc_common.jsp"%>
<html>
<head>
  <title>mvnForum - Edit Forum</title>
<%@ include file="/mvnplugin/mvnforum/meta.jsp"%>
<link href="<%=contextPath%>/mvnplugin/mvnforum/css/style.css" rel="stylesheet" type="text/css">
</head>
<script language="JavaScript1.2" src="<%=contextPath%>/mvnplugin/mvnforum/js/vietuni.js" type="text/javascript"></script>
<body leftmargin="0" topmargin="0">
<%@ include file="inc_js_checkvalid_myvietnamlib.jsp"%>
<script type="text/javascript">
function SubmitForm() {
  if (ValidateForm() == true ) {
    document.submitform.submitbutton.disabled=true;
    document.submitform.submit();
  }
}

function ValidateForm() {
  if (isBlank(document.submitform.ForumName, "Forum Name")) return false;
  return true;
}
</script>

<%@ include file="header.jsp"%>
<br/>

<table width="95%" align="center">
  <tr class="nav">
    <td><img src="<%=contextPath%>/mvnplugin/mvnforum/images/nav.gif"></td>
    <td width="100%" nowrap>
    <a class="nav" href="<%=indexUrl%>">mvnForum</a>&nbsp;&raquo;&nbsp;
    <a class="nav" href="index">Admin CP</a>&nbsp;&raquo;&nbsp;
    <a class="nav" href="forummanagement">Forum Management</a>&nbsp;&raquo;&nbsp;
    Edit Forum
    </td>
  </tr>
</table>
<br/>

<%
ForumBean forumBean = (ForumBean)request.getAttribute("ForumBean");
Collection categoryBeans = CategoryCache.getInstance().getBeans();
%>

<form action="updateforum" method="post" name="submitform">
<input type="hidden" name="ForumID" value="<%=forumBean.getForumID()%>">
<table class="tborder" width="95%" cellspacing="1" cellpadding="3" align="center">
  <tr class="theader">
    <td colspan="2">Edit Forum information:</td>
  </tr>
  <tr class="trow1">
    <td>Category Name:</td>
    <td>
      <select name="CategoryID">
<% for (Iterator iterator = categoryBeans.iterator(); iterator.hasNext(); ) {
    CategoryBean row = (CategoryBean)iterator.next(); %>
        <option value="<%=row.getCategoryID()%>" <%if (row.getCategoryID() == forumBean.getCategoryID()) {%>selected <%}%>><%=row.getCategoryName()%></option>
<% } //for%>
      </select>
    </td>
  </tr>
  <tr class="trow2">
    <td>Forum Name:</td>
    <td><input type="text" name="ForumName" value="<%=forumBean.getForumName()%>" size="60" onkeyup="initTyper(this);"></td>
  </tr>
  <tr class="trow1">
    <td>Forum Description:</td>
    <td><textarea cols="60" rows="6" name="ForumDesc" onkeyup="initTyper(this);"><%=forumBean.getForumDesc()%></textarea></td>
  </tr>
  <tr class="trow2">
    <td>Forum Order:</td>
    <td><input type="text" name="ForumOrder" value="<%=forumBean.getForumOrder()%>" size="60" maxlength="5"></td>
  </tr>
  <tr class="trow1">
    <td>Forum Status:</td>
    <td>
      <select name="ForumStatus" style="width: 220px;">
        <option value="0" <%if (forumBean.getForumStatus() == 0) {%>selected <%}%>>Normal</option>
        <option value="1" <%if (forumBean.getForumStatus() == 1) {%>selected <%}%>>Disabled</option>
        <option value="2" <%if (forumBean.getForumStatus() == 2) {%>selected <%}%>>Locked</option>
        <option value="3" <%if (forumBean.getForumStatus() == 3) {%>selected <%}%>>Closed</option>
      </select>
    </td>
  </tr>
  <tr class="trow2">
    <td>Forum Type:</td>
    <td>
      <select name="ForumType" style="width: 220px;">
        <option value="0" <%if (forumBean.getForumType() == 0) {%>selected <%}%>>Normal</option>
        <option value="1" <%if (forumBean.getForumType() == 1) {%>selected <%}%>>Private</option>
      </select>
    </td>
  </tr>
  <tr class="trow1">
    <td>Moderation Mode:</td>
    <td>
      <select name="ForumModerationMode" style="width: 220px;">
        <option value="0" <%if (forumBean.getForumModerationMode() == 0) {%>selected <%}%>>System Default</option>
        <option value="1" <%if (forumBean.getForumModerationMode() == 1) {%>selected <%}%>>No Moderation</option>
        <option value="2" <%if (forumBean.getForumModerationMode() == 2) {%>selected <%}%>>Thread and Post Moderation</option>
        <option value="3" <%if (forumBean.getForumModerationMode() == 3) {%>selected <%}%>>Only Thread Moderation</option>
        <option value="4" <%if (forumBean.getForumModerationMode() == 4) {%>selected <%}%>>Only Post Moderation</option>
      </select>
    </td>
  </tr>
<%if (currentLocale.equals("vi")) {/*vietnamese here*/%>
  <tr class="trow2">
    <td valign="top" nowrap>Ki&#7875;u g&#245; ti&#7871;ng Vi&#7879;t:</td>
    <td>
      <input type="radio" name="vnselector" value="TELEX" onClick="setTypingMode(1);" class="noborder"> Telex&nbsp;&nbsp;&nbsp;&nbsp;
      <input type="radio" name="vnselector" value="VNI" checked onClick="setTypingMode(2);" class="noborder"> VNI&nbsp;&nbsp;&nbsp;&nbsp;
      <input type="radio" name="vnselector" value="VIQR" onClick="setTypingMode(3);" class="noborder"> VIQR<br>
      <input type="radio" name="vnselector" value="NOVN" onClick="setTypingMode(0);" class="noborder"> Kh&#244;ng s&#7917; d&#7909;ng<br>
      <script language="JavaScript"> setTypingMode(2); </script>
    </td>
  </tr>
<%}// end if vietnamese%>
  <tr class="trowfinal">
    <td colspan="2" align="center">
      <input type="button" name="submitbutton" value="Update Forum" onclick="javascript:SubmitForm();" class="mainoption">
      <input type="reset" value="Reset" class="liteoption">
    </td>
  </tr>
</table>
</form>

<br/>
<%@ include file="footer.jsp"%>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -