bulletin_modify_success.jsp

来自「非常完整的Java开发的网络办公系统」· JSP 代码 · 共 32 行

JSP
32
字号

<%@ 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: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.setBulletinId(Integer.parseInt(request.getParameter("bulletinId")));
    bulletinProxy.modifyBulletin(bvb);
%>

<html>
<head>
<script language=javascript>
function forward()
{
	document.location = "/mainctrl/bulletin/home?ss&start=<%=request.getParameter("start")%>";
}
</script>
</head>
<body onload="javascript:forward()">
</body>
<html>

⌨️ 快捷键说明

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