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

电子政务应用

开发平台:

Java

  1. <%@ page errorPage="/vnex/ErrorPage.jsp" %>
  2. <jsp:useBean id="msgProxy" scope="application" class="com.vnex.intranet.communication.message.proxy.MessageProxyBean" />
  3. <%
  4.     int msgId = Integer.parseInt(request.getParameter("msgId"));
  5.     int fileId = Integer.parseInt(request.getParameter("fileId"));
  6.     msgProxy.deleteOneSendAttachment(msgId, fileId);
  7. %>
  8. <html>
  9. <head>
  10. <script language=javascript>
  11. function forward()
  12. {
  13. document.location = "/mainctrl/msg/sentDetail?msgId=<%=msgId%>";
  14. }
  15. </script>
  16. </head>
  17. <body onload="javascript:forward()">
  18. </body>
  19. <html>
  20.