⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 prodel.jsp

📁 基于JSP的简单网上书店设计与实现(各模块完整齐全)
💻 JSP
字号:
<%@ page contentType="text/html; charset=GB2312"%>
<%@ page import="java.sql.*"%>
<% request.setCharacterEncoding("GB2312");%>
<jsp:useBean id="productinfoBean" class="MyFly.Bean.productinfoBean" scope="request"/>
<jsp:useBean id="file_Bean" class="MyFly.Bean.file_Bean" scope="request"/>

<%
    String index=request.getParameter("index").replace(',', '#');
	String proType=request.getParameter("proType");
	String proNum=(String)request.getParameter("proNum");
	
	productinfoBean.getNew(index);
	String max=productinfoBean.getMaxPicture();
	String min=productinfoBean.getMinPicture();
	
	if(productinfoBean.delete(index) == 0)
	{
	    out.println("<Script language=JavaScript>alert('删除失败');javascript:history.back();</Script>");
	}
	else
	{
	    String str=request.getRealPath("/");
        str+="\\XKB\\product_image";
	    file_Bean.setPathName(str);
		file_Bean.delFile(max);
		file_Bean.delFile(min);
		String url="proView.jsp?proType="+proType+"&pageNum=1&proNum="+proNum;
	    response.sendRedirect(url);
	}
%>
</body>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -