bulletin_publish.jsp
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:1k
源码类别:

电子政务应用

开发平台:

Java

  1. <%@ page errorPage="/vnex/ErrorPage.jsp" %>
  2. <%@ page import="com.vnex.intranet.util.*" %>
  3. <jsp:useBean id="bulletinProxy" scope="application" class="com.vnex.intranet.communication.bulletin.proxy.BulletinProxyBean" />
  4. <%
  5.     if(request.getParameter("bulletinId") != null)
  6.     {
  7.        int bulletinId = Integer.parseInt(request.getParameter("bulletinId"));
  8.        bulletinProxy.publishToScrollText(bulletinId);
  9.     }
  10.     else
  11.     {
  12.        String[] bulletinIds = request.getParameterValues("bulletinIds");
  13.        if(bulletinIds != null)
  14.        {
  15.           for(int i=0;i<bulletinIds.length;i++)
  16.              bulletinProxy.publishToScrollText(Integer.parseInt(bulletinIds[i]));
  17.        }
  18.     }   
  19. %>
  20. <html>
  21. <head>
  22. <script language=javascript>
  23. function forward()
  24. {
  25. document.location = "/mainctrl/personal/bulletin/home";
  26. }
  27. </script>
  28. </head>
  29. <body onload="javascript:forward()">
  30. </body>
  31. <html>