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

📄 shoping.jsp~11~

📁 JBuilder 2006 +SQL Server2000 +JavaBean+JSP开发的宠物医院管理系统
💻 JSP~11~
字号:
<%@ 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>
<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 align="center">${goods.num*goods.cprice}</td>
<td><a href="/WebModule/delgoodsservlet?gid=${goods.GID}">移出购物车</a></td>
</tr>
</c:forEach>
<tr>
<td colspan="4" align="left">总计:</td>
<td colspan="2">${money}</td>
</tr>
</table>

<p align="center"><a href="/WebModule/shopservlet" target="mainFrame">继续购物</a></p>
</form>
</body>
</html>

⌨️ 快捷键说明

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