bulletin_search_result.jsp
资源名称:NetOffice.rar [点击查看]
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:1k
源码类别:
电子政务应用
开发平台:
Java
- <%@ page errorPage="/vnex/ErrorPage.jsp" %>
- <jsp:useBean id="BusinessName" scope="session" class="com.vnex.intranet.pub.BusinessSession" />
- <jsp:useBean id="cu" scope="request" class="com.vnex.intranet.communication.util.CommunicationUtil" />
- <%
- String pageTo = "/mainctrl/bulletin/home";
- String searchCondition = "";
- int deptId = Integer.parseInt(request.getParameter("deptId"));
- if(deptId != BusinessName.getDeptId())
- {
- pageTo = "/mainctrl/bulletin/otherBulletinList";
- }
- if(deptId == 0)
- searchCondition = "查看全部公告";
- else
- searchCondition = "查看"+cu.selectDeptName(dept)+"公告";
- %>
- <html>
- <head>
- <script language=javascript>
- function forward()
- {
- document.location = "<%=pageTo%>?deptId="<%=deptId%>&searchCondition=<%=searchCondition%>";
- }
- </script>
- </head>
- <body onload="javascript:forward()">
- </body>
- <html>