bulletins_delete.jsp
资源名称:NetOffice.rar [点击查看]
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:1k
源码类别:
电子政务应用
开发平台:
Java
- <%@ page errorPage="/vnex/ErrorPage.jsp" %>
- <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" />
- <%
- String[] ids = request.getParameterValues("bulletinId");
- if(ids != null)
- {
- for(int i=0;i<ids.length;i++)
- {
- if(BusinessName.getEmpId() == bulletinProxy.getBulletinDetail(Integer.parseInt(ids[i])).getCreatorId())
- bulletinProxy.deleteBulletin(Integer.parseInt(ids[i]));
- }
- }
- %>
- <html>
- <head>
- <script language=javascript>
- function forward()
- {
- document.location = "/mainctrl/bulletin/home?ss=<%=request.getParameter("ss")%>";
- }
- </script>
- </head>
- <body onload="javascript:forward()">
- </body>
- <html>