publish_post.jsp
来自「用jsp实现的大型商城源代码」· JSP 代码 · 共 13 行
JSP
13 行
<%@ include file = "../../config.jsp" %>
<%@ page contentType="text/html;charset=GBK"%>
<%@ page import="java.util.*"%>
<jsp:useBean id="Manager" scope="page" class="myshop.product_sys.ManagerProduct"/>
<%
String img_path = UploadFolder + "/" + (String)session.getAttribute("NewImgName");
Manager.AddProduct(request,tb_shop_product_info,img_path);
//撤消所有会话
session.removeAttribute("NewImgName");
response.sendRedirect("publish.jsp");
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?