?? bulletin_publish_success.jsp
字號:
<%@ page errorPage="/vnex/ErrorPage.jsp" %>
<%@ page import="com.vnex.intranet.util.*" %>
<jsp:useBean id="bvb" scope="request" class="com.vnex.intranet.communication.bulletin.value.BulletinValueBean"/>
<jsp:useBean id="bulletinProxy" scope="application" class="com.vnex.intranet.communication.bulletin.proxy.BulletinProxyBean" />
<jsp:useBean id="BusinessName" scope="session" class="com.vnex.intranet.pub.BusinessSession" />
<jsp:setProperty name="bvb" property="*" />
<%
if(request.getParameter("endDate") != null && !request.getParameter("endDate").equals(""))
{
String endDate = request.getParameter("endDate")+" 00:00:00";
bvb.setEndDate(TimeStamp.convertTimestampToCalendar(TimeStamp.toTimestamp(endDate)));
}
bvb.setCreatorId(BusinessName.getEmpId());
bvb.setDeptId(BusinessName.getDeptId());
bulletinProxy.publishBulletin(bvb);
%>
<html>
<head>
<script language=javascript>
function forward()
{
document.location = "/mainctrl/bulletin/home?home";
}
</script>
</head>
<body onload="javascript:forward()">
</body>
<html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -