shoping.jsp~6~
来自「JBuilder 2006 +SQL Server2000 +JavaBean+」· JSP~6~ 代码 · 共 37 行
JSP~6~
37 行
<%@ page contentType="text/html; charset=GB2312" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%request.setCharacterEncoding("gbk"); %>
<html>
<head>
<title>
shoping
</title>
</head>
<body bgcolor="#ffffff">
<h2 align="center">
购物车
</h2>
<form method="post" action="shoping.jsp">
<table align="center">
<tr>
<th>商品名称</th>
<th>商品价格</th>
<th>商品简介</th>
<th>商品数量</th>
<th>移出购物车</th>
</tr>
<c:forEach items="${buygoods}" var="goods">
<tr>
<td>${goods.gname}</td>
<td>${goods.cprice}</td>
<td>${goods.cintro}</td>
<td>${goods.num}</td>
<td>${goods.GID}移出购物车</td>
</tr>
</c:forEach>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?