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

电子政务应用

开发平台:

Java

  1. <%@ page errorPage="/vnex/ErrorPage.jsp" %>
  2. <%@ page import="com.vnex.intranet.organization.value.*"%>
  3. <%@ page import="com.vnex.intranet.organization.proxy.*"%>
  4. <jsp:useBean id="positionProxyBean" scope="Application" class="com.vnex.intranet.organization.proxy.PositionProxyBean" />
  5. <%
  6. int did = Integer.parseInt(request.getParameter("id"));
  7. int divid = Integer.parseInt(request.getParameter("divid"));
  8. String divisionName = request.getParameter("dname");
  9. ArrayList dparray = (ArrayList)positionProxyBean.getPrivilegesByDuty(did);
  10. if (dparray!=null)
  11. {
  12. int[] idsremove = new int[dparray.size()];
  13. for(int j=0;j<dparray.size();j++)
  14. {
  15. idsremove[j] = ((PrivilegeValueBean)dparray.get(j)).getPrivilegeId();
  16. }
  17. positionProxyBean.removePrivileges(idsremove,did);
  18. }
  19. positionProxyBean.removeDuty(did);
  20. String link="/mainctrl/organization/getAllPosition?id="+divid + "&name=" + divisionName;
  21. %>
  22. <jsp:forward page="<%=link%>" />