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

电子政务应用

开发平台:

Java

  1. <%@ page errorPage="/vnex/ErrorPage.jsp" %>
  2. <jsp:useBean id="addressProxy" scope="request" class="com.vnex.intranet.addresslist.proxy.AddressProxyBean" />
  3. <%
  4.     String[] contactIds = request.getParameterValues("contactIds");
  5.     if(contactIds != null)
  6.     {
  7.        for(int i=0;i<contactIds.length;i++)
  8.           addressProxy.deleteFromBook(Integer.parseInt(contactIds[i]));
  9.     }          
  10. %>
  11. <html>
  12. <head>
  13. <script language=javascript>
  14. function forward()
  15. {
  16. document.location = "/mainctrl/addressbook/home";
  17. }
  18. </script>
  19. </head>
  20. <body onload="javascript:forward()">
  21. </body>
  22. <html>