bulletin_write.jsp
资源名称:NetOffice.rar [点击查看]
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:5k
源码类别:
电子政务应用
开发平台:
Java
- <%@ taglib uri="/vnex.tld" prefix="vnex" %>
- <%@ page errorPage="/vnex/ErrorPage.jsp" %>
- <%@ page import="com.vnex.intranet.util.TimeStamp" %>
- <jsp:useBean id="BusinessName" scope="session" class="com.vnex.intranet.pub.BusinessSession" />
- <%
- java.sql.Timestamp ts = com.vnex.intranet.pub.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 publishBulletin(form)
- {
- if(checkIt(form))
- {
- form.action="/mainctrl/personal/bulletin/writeBulletinSuccess";
- form.submit();
- }
- }
- function checkIt(form)
- {
- if(isEmpty(form.bulletinBody.value) || isEmptyStr(form.bulletinBody.value))
- {
- alert("请输入滚动消息内容");
- form.bulletinBody.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_person.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">
- <a href="/mainctrl/home/index"><font color="#ffffff">首页</font></a>>>
- <a href="/mainctrl/personal/main"><font color="#ffffff">个人办公</font></a>>>
- <a href="/mainctrl/personal/bulletin/home"><font color="#ffffff">滚动消息管理</font></a>>>
- 写滚动消息
- </font>
- </tr>
- </table>
- <table class=title border="0" cellpadding="2" cellspacing="1" width="600">
- <tr bgcolor="#fafafa">
- <td width="15%"><strong> 内容:</strong></td>
- <td>
- <textarea name="bulletinBody" rows="5" cols="50" class="text"></textarea> * (注:带*为必填内容)
- </td>
- </tr>
- <tr bgcolor="#e0e0e0">
- <td width="15%"><strong> 截止日期:</strong></td>
- <td>
- <input type="text" name="endDate" readonly size="24" class="text">
- <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><%=BusinessName.getEmpName()%></td>
- </tr>
- <tr bgcolor="#e0e0e0">
- <td width="15%"><strong> 发布日期:</strong></td>
- <td><%=TimeStamp.toString(ts)%></td>
- </tr>
- <tr bgcolor="#fafafa">
- <td colspan="2" height="30" align="center">
- <input type="button" name="Button2" value="保存" onClick="publishBulletin(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>