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

📄 car.jsp

📁 cwc 源码 非常好的代码 大家可以学习学习
💻 JSP
字号:
<%@ include file = "../../config.jsp" %>
<%@ page import="java.util.*"%>
<%@ page contentType="text/html;charset=GBK"%>
<jsp:useBean id="ManagerPurchase" scope="page" class="myshop.purchase_sys.ManagerPurchase"/>
<%
Hashtable InfoHash = new Hashtable();
InfoHash = ManagerPurchase.GetProduct(tb_shop_product_info,session);
%>
<html>
<head>
<title>CWC大型购物商城</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../../style" rel="stylesheet" type="text/css">
<script language="javascript">
	function SendOrder() {
		document.TheForm.action = "SendOrder.jsp";
		document.TheForm.submit();
	}
</script>
</head>

<body topmargin="0">
<%@ include file = "../../head.jsp" %>
<form name="TheForm" method="post" action="DealWithCenter.jsp?action=updatequantity">
<table width="770" border="0" align="center" cellpadding="3" cellspacing="0">
  <tr>
    <td width="786">你的购物车 &gt;&gt;</td>
  </tr>
</table>

  <table width="770" border="0" align="center" cellpadding="0" cellspacing="0">
    <tr> 
      <td width="786" bgcolor="#000000"><table width="100%" border="0" cellspacing="1" cellpadding="0">
          <tr> 
            <td bgcolor="#FFFFFF"><table width="100%" border="0" cellspacing="0" cellpadding="3">
                <tr align="center" valign="middle"> 
                  <td width="21%" bgcolor="eeeeee">商品名称</td>
                  <td width="20%" bgcolor="eeeeee">价格</td>
                  <td width="21%" bgcolor="eeeeee">数量</td>
                  <td width="20%" bgcolor="eeeeee">单项总价</td>
                  <td width="18%" bgcolor="eeeeee">操作</td>
                </tr>
<%=InfoHash.get("html")%>
              </table></td>
          </tr>
        </table></td>
    </tr>
  </table>
  <br>
  <table width="770" border="0" align="center" cellpadding="3" cellspacing="0">
  <tr> 
    <td width="279">总价:<font color="#FF0000">¥<%=InfoHash.get("all_total_price")%></font></td>
    <td width="479"><input type="submit" name="Submit" value="更改数量">
      <input type="button" name="Submit2" value="清空购物车" onclick=location="DealWithCenter.jsp?action=killcar">
      <input type="button" name="Submit3" value="收银台" onClick=SendOrder()>
    </td>
  </tr>
</table>
</form>
<%@ include file="../../foot.jsp"%>
</body>
</html>

⌨️ 快捷键说明

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