bulletin_modify.jsp
资源名称:NetOffice.rar [点击查看]
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:7k
源码类别:
电子政务应用
开发平台:
Java
- <%@ taglib uri="/vnex.tld" prefix="vnex" %>
- <%@ page errorPage="/vnex/ErrorPage.jsp" %>
- <%@ page import="java.util.Calendar" %>
- <%@ page import="com.vnex.intranet.util.TimeStamp" %>
- <%@ page import="com.vnex.intranet.pub.BaseJdbcDAO" %>
- <jsp:useBean id="bulletinProxy" scope="application" class="com.vnex.intranet.communication.bulletin.proxy.BulletinProxyBean" />
- <jsp:useBean id="bvb" scope="request" class="com.vnex.intranet.communication.bulletin.value.BulletinValueBean" />
- <%
- bvb = bulletinProxy.getBulletinDetail(Integer.parseInt(request.getParameter("bulletinId")));
- String year = "0";
- String month = "0";
- String day = "0";
- String endDate = "";
- if(bvb.getEndDate() != null)
- {
- Calendar cal = bvb.getEndDate();
- year = ""+cal.get(Calendar.YEAR);
- if((cal.get(Calendar.MONTH)+1)<10)
- month = "0"+(cal.get(Calendar.MONTH)+1);
- else
- month = ""+(cal.get(Calendar.MONTH)+1);
- if(cal.get(Calendar.DAY_OF_MONTH)<10)
- day = "0"+cal.get(Calendar.DAY_OF_MONTH);
- else
- day = ""+cal.get(Calendar.DAY_OF_MONTH);
- endDate = year+"-"+month+"-"+day;
- }
- java.sql.Timestamp ts = BaseJdbcDAO.getDBSystemDate();
- String current = ts.toString();
- current = current.substring(0, current.indexOf(" "));
- %>
- <script language=javascript src="/vnex/util/popup.js"></script>
- <script language="javascript" src="/vnex/util/strUtil.js"></script>
- <script language=JavaScript>
- function modifyBulletin(form)
- {
- if(checkIt(form))
- {
- form.action="/mainctrl/bulletin/modifyBulletinSuccess?bulletinId=<%=request.getParameter("bulletinId")%>&start=<%=request.getParameter("start")%>";
- form.submit();
- }
- }
- function checkIt(form)
- {
- if(isEmpty(form.bulletinTitle.value) || isEmptyStr(form.bulletinTitle.value))
- {
- alert("请输入公告板标题");
- form.bulletinTitle.focus();
- return false;
- }
- if(isInvalidateLen(form.bulletinTitle.value,100))
- {
- alert("公告信息标题不能超过25个汉字或100个英文字符");
- form.bulletinTitle.focus();
- return false;
- }
- if(!isEmpty(form.bulletinBody.value) && isInvalidateLen(form.bulletinBody.value,1000))
- {
- alert("公告信息内容不能超过250个汉字或1000个英文字符 ");
- form.bulletinBody.focus();
- return false;
- }
- if(!isEmpty(form.endDate.value))
- {
- if(form.endDate.value < "<%=current%>")
- {
- alert("截止日期必须在本日之后");
- form.endDate.focus();
- return false;
- }
- }
- return true;
- }
- </script>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <HTML>
- <jsp:include page="/vnex/page/FORM_HEAD.jsp" />
- <BODY text=#000000 vLink=#000000 aLink=#000000 link=#000000 bgColor=#ffffff topMargin=20 leftmargin="0" marginwidth="0" marginheight="0">
- <script language="JavaScript1.2" src="/vnex/menu/dockmenu_communicate.js"></script>
- <script language="JavaScript1.2" src="/vnex/menu/dockmenu.js"></script>
- <DIV align=center>
- <form name="form1" method="post">
- <TABLE class=outter cellSpacing=0 cellPadding=0 width=600 border=0>
- <TBODY>
- <jsp:include page="/vnex/page/TTOA_TABLE_TOP.jsp" />
- <TR>
- <TD colSpan=3 align="center" class="iframestyle" valign="top"><br>
- <table width="600" border="1" cellspacing="1" bordercolor="#666666">
- <tr valign="top" bgcolor="#fafafa">
- <td >
- <table width="600" border="0" cellpadding="2" cellspacing="0">
- <tr bgcolor="#666666">
- <td colspan="2"><font class="strongw"><font class="strongw"><a href="/mainctrl/home/index"><font color="#ffffff">首页</font></a>>><a href="/mainctrl/communication/main"><font color="#ffffff">通信</font></a>>><a href="/mainctrl/bulletin/home?home"><font color="#ffffff">公告板</font></a>>>修改公告板信息</font>
- </td>
- </tr>
- </table>
- <table class=title width="600" border="0" cellspacing="1" cellpadding="2">
- <tr bgcolor="#e0e0e0">
- <td width="15%"> <strong>标题:</strong></td>
- <td>
- <input type="text" name="bulletinTitle" value="<%=bvb.getBulletinTitle()%>" size="24" class="text" maxlength="100"> *(注:带*为必填内容)
- </td>
- </tr>
- <tr bgcolor="#fafafa">
- <td width="15%"> <strong>内容:</strong></td>
- <td>
- <textarea name="bulletinBody" rows="5" cols="59" class="text"><%=bvb.getBulletinBody()%></textarea>
- </td>
- </tr>
- <tr bgcolor="#e0e0e0">
- <td width="15%"> <strong>截止日期:</strong></td>
- <td>
- <input type="text" name="endDate" readonly size="24" class="text" value="<%=endDate%>">
-
- <img src="/vnex/util/datetime.gif" style="cursor:hand;" align="absmiddle" alt="选择借阅档案日期" onClick="fPopUpCalendarDlg(endDate);return false">
- </td>
- </tr>
- <tr bgcolor="#fafafa">
- <td width="15%"><strong> 发布人:</strong></td>
- <td><%=bvb.getCreator()%></td>
- </tr>
- <tr bgcolor="#e0e0e0">
- <td width="15%"><strong> 发布日期:</strong></td>
- <td><%=TimeStamp.toString(TimeStamp.convertCalendarToTimestamp(bvb.getCreateDate()))%>
- </td>
- </tr>
- <tr bgcolor="#fafafa">
- <td colspan="2" height="30" align="center">
- <input type="button" name="Button2" value="保存" onClick="modifyBulletin(this.form)" class="text">
-
- <input type="reset" name="Button2" value="重置" class="text">
-
- <input type="button" name="Button2" value="放弃" class="text" onclick="history.back()">
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <jsp:include page="/vnex/page/TTOA_HELP.jsp" />
- </TD>
- </TR>
- <jsp:include page="/vnex/page/TTOA_TABLE_BOTTOM.jsp" />
- </TBODY>
- </TABLE>
- <BR>
- <jsp:include page="/vnex/page/TTOA_PRODUCER_LOGO.jsp" />
- </form>
- </DIV>
- </BODY>
- </HTML>