product_newDel.jsp
上传用户:yatiankong
上传日期:2014-05-16
资源大小:5604k
文件大小:1k
源码类别:

Applet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
  2. <jsp:useBean id="project_newBean" class="MyFly.Bean.project_newBean" scope="request"/>
  3. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  7. <title>无标题文档</title>
  8. </head>
  9. <body>
  10. <%
  11.     String index=request.getParameter("index");
  12. if(project_newBean.delete(Integer.parseInt(index)) == 1)
  13. {
  14.      out.println("<script language=javascript>location.href='project_newView.jsp';</script>");
  15.  
  16. }
  17. else
  18. {
  19.    out.println("<Script language=JavaScript>alert('删除失败,请重新删除');JavaScript:history.back();</Script>");
  20. }
  21. %>
  22. </body>
  23. </html>