ProductDelete.jsp
上传用户:sxychgz
上传日期:2019-04-21
资源大小:4772k
文件大小:0k
源码类别:

电子政务应用

开发平台:

Java

  1. <%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
  2. <%@ page import="com.bjsxt.shopping.product.*"%>
  3. <%
  4. int id = Integer.parseInt(request.getParameter("id"));
  5. ProductMgr.getInstance().delete(id);
  6. %>
  7. <html>
  8. <head>
  9. <title>删除产品</title>
  10. </head>
  11. <center>
  12. 删除成功!
  13. </center>
  14. <body>
  15. <script type="text/javascript">
  16. parent.main.location.reload();
  17. </script>
  18. </body>
  19. </html>