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

电子政务应用

开发平台:

Java

  1. <%@ page errorPage="/vnex/ErrorPage.jsp" %>
  2. <jsp:useBean id="archiveProxy" class="com.vnex.intranet.archives.proxy.ArchiveProxyBean" scope="session" /> 
  3. <%
  4. String str = request.getParameter("archiveId");
  5. archiveProxy.deleteArchive((new Integer(str)).intValue());
  6. %>
  7. <html>
  8. <head>
  9. <script language=javascript>
  10. <!--
  11. function forward()
  12. {
  13. document.location="/mainctrl/archive/todayArchives";
  14. }
  15. -->
  16. </script>
  17. </head>
  18. <body onload="javascript:forward()">
  19. 成功!
  20. </body>
  21. <html>