?? modifyproduct_do.jsp
字號:
<%@ page contentType="text/html; charset=gbk" language="java" pageEncoding="GBK"%>
<%@ page import="java.util.Collection"%>
<%@ page import="java.util.Iterator"%>
<jsp:useBean id="product" class="com.jspdev.ch12.Product" scope="page">
<jsp:setProperty name="product" property="*"></jsp:setProperty>
</jsp:useBean>
<jsp:useBean id="productBean" class="com.jspdev.ch12.ProductBean" scope="page"></jsp:useBean>
<html>
<head>
<title>商品修改頁面處理頁面</title>
</head>
<body>
<%
int count = productBean.modifyProduct(product);
if(count>0) {
out.print("成功!");
}else {
out.print("失??!");
}
%>
<a href="productList.jsp">返回</a>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -