一个asp简单购物车教程

时间:2007-09-17 11:02:00 

asp之家注:如果你学习过asp,并且在网络公司上过班,一定会接触到网购系统,网购系统可以说是一个典型的程序类型,而其中最重要,也是最关键的程序就是:如何处理购物车,以及订单的处理。就我别人来说也做过不少购物系统,有中文也有英文的,而购物车的核心个人觉得就是如何保存购物车的内容。我使用过session,也使用过cookies,这个看客户需求而定,本文介绍了一个asp购物车的系统,相信对刚接触这类程序的人有所帮助!

数据库字段
表:pro_talbe:
id 产品编号
proname 产品名称
simages 产品小图 
表o_rder:
id 订单编号
p_roid 产品编号
m_um 产品数量
d_time 订购时间
表co_table:
id 客户编号
nn_ame 客户姓名
tt_el 联系电话
ee_m_ail 客户邮箱
index.asp源码


<%@LANGUAGE="VBSCRIPT"%> 
<!--#include file="Connections/conn.asp" --> 
<% 
set Recordset1 = Server.CreateObject("ADODB.Recordset") 
Recordset1.ActiveConnection = MM_conn_STRING 
Recordset1.Source = "SELECT * FROM pro_table" 
Recordset1.CursorType = 0 
Recordset1.CursorLocation = 2 
Recordset1.LockType = 3 
Recordset1.Open() 
Recordset1_numRows = 0 
%> 
<% 
Dim Repeat1__numRows 
Repeat1__numRows = -1 
Dim Repeat1__index 
Repeat1__index = 0 
Recordset1_numRows = Recordset1_numRows + Repeat1__numRows 
%> 
<html> 
<head> 
<title>Untitled Document</title> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"> 
</head> 
<body bgcolor="#FFFFFF" text="#000000"> 
<table width="583" border="0" cellspacing="0" cellpadding="0"> 
<%  
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))  
%> 
<tr>  
<td width="140"><%=(Recordset1.Fields.Item("id").Value)%></td> 
<td width="171"><%=(Recordset1.Fields.Item("proname").Value)%></td> 
<td width="272"><%=(Recordset1.Fields.Item("simages").Value)%></td> 
<td width="272"><a href="cart.asp?ProductID=<%=(Recordset1.Fields.Item("id").Value)%>&quantity=1">购买</a></td> 
</tr> 
<%  
Repeat1__index=Repeat1__index+1 
Repeat1__numRows=Repeat1__numRows-1 
Recordset1.MoveNext() 
Wend 
%> 
</table> 
</body> 
</html> 
<% 
Recordset1.Close() 
%> 



列出产品,这里有一个要点就是:


<a href="cart.asp?ProductID=<%=(Recordset1.Fields.Item("id").Value)%>&quantity=1">购买</a> 


这里传递了两个参数:产品ID“ProductID" 数量:“quantity"

标签:购物车,asp
0
投稿

猜你喜欢

  • ORACLE常见错误代码的分析与解决(一)

    2010-08-02 13:20:00
  • python使用梯度下降和牛顿法寻找Rosenbrock函数最小值实例

    2022-09-10 20:01:20
  • Bootstrap进度条学习使用

    2024-04-18 09:28:31
  • 详解Python的三种拷贝方式

    2023-04-20 19:39:20
  • PS笔刷,样式,形状、渐变、滤镜载入方式及使用

    2007-10-17 11:47:00
  • 如何用 Python 子进程关闭 Excel 自动化中的弹窗

    2023-10-16 15:47:32
  • vue-property-decorator用法详解

    2024-05-29 22:49:55
  • ThinkPHP基于think-queue的队列插件实现消息推送

    2023-05-25 05:59:12
  • SQL Server管理 这些你懂吗?

    2011-07-01 13:40:23
  • 用Dreamweaver设计自动关闭的网页

    2010-09-02 12:29:00
  • python 获取域名到期时间的方法步骤

    2022-09-02 13:37:43
  • 约瑟夫问题的Python和C++求解方法

    2023-12-05 15:09:28
  • Python根据成绩分析系统浅析

    2023-08-02 20:25:07
  • .NET Framework SQL Server 数据提供程序连接池

    2024-01-27 05:05:23
  • Python 12306抢火车票脚本

    2023-09-12 13:36:11
  • python 用matplotlib绘制折线图详情

    2022-03-23 16:38:19
  • 深入浅析mybatis oracle BLOB类型字段保存与读取

    2024-01-15 02:21:26
  • python由已知数组快速生成新数组的方法

    2022-11-01 09:08:36
  • Python+OpenCV实现阈值分割的方法详解

    2023-08-13 02:24:00
  • Python实现PDF转换文本详解

    2022-09-04 13:40:52
  • asp之家 网络编程 m.aspxhome.com