浙江警官职业学院
1
摘 要
随着 Internet 的不断普及,人们对于互联网技术的要求已不单单是浏览一下
网页,收发电子邮件,日益忙碌的人们开始追求足不出户的利用互联网这一强大
的平台来实现的网上购物。对于企业来讲,无论是企业之间(B to B),还是企业和
客户之间(B to C)的交易,如果能够实现网上交易将大大提高交易速度节约交易成
本。近几年,随着网络数据库技术的进一步发展,使得这一设想逐渐成为现实。
运用 ASP 技术和网络数据库原理,基于 B/S 模式我开发了一个网上购物系统。
在我的系统中,顾客可以很方便的注册成为会员,对商品进行浏览检索,查看商
品的详细资料,然后根据各人的喜好购买心仪的商品。系统会自动为顾客生成订
单,按照顾客所填写的信息提交订单并发货。系统管理员则可以对现有的商品进
行添加和编辑,审查已注册的用户并对提交的订单进行处理。
关键词:B/S 模式;ASP;电子商务;网络数据库
网上购物系统
2
Abstract
Along with the Internet of continuously universal, people are for the
request of technique Internet the already and not only single is a view once
web page, receive and dispatch the E-mail, increasingly busy people start
pursuing the exploitation Internet that keep the house this a the mighty
platform come the net that realizes on the shopping. Speak for the business
enterprise, and weather is the business enterprise’s ( B to B), or business
enterprise with the customer's bargain for( B to C), if can realize the net up
trade and will consumedly increase the bargain speed the economy to trade
the cost. In the last few years, along with the technique's further
development of network database, make this on conceiving to gradually
become the actuality.
Application ASP technique is with the network database principle,
according to B/ S mode I developed a net on the shopping system. In my
system, customer can very the convenient registration become the member,
and proceeds to merchandise view index, look into favors that the
merchandise's detailed data, then purchase the adoring merchandise
according to the everyone. System would the auto is a born order of
customer, and hand over the order to erupt goods according to the
information for fill inning of customer. System manager can then proceeds
to increase with the order that edit, investigate already the registered
customer combine right hand over to proceeds to handle to current
浙江警官职业学院
3
merchandise.
Key words: B/ S mode, ASP, electronic commerce, network database.
网上购物系统
4
目 录
摘 要.............................................................1
第一章.前 言 ...................................................5
1.1 问题的提出..................................................5
1.2 问题的解决..................................................5
第二章.目前主流网站开发技术、工具的优缺点对比 ..............7
准备知识――ASP 技术 .............................................7
2.1 ASP 的简介..................................................7
2.2 ASP 的特点..................................................7
2.3 ASP 的工作原理..............................................9
第三章.系统概述 ................................................10
3.1 系统设计思想...............................................10
3.1.1 访问方式的选择............................................10
3.2 系统总体结构图.............................................12
3.3 系统功能模块图.............................................13
3.4 系统开发工具...............................................14
第四章.系统网络数据库的建立 ..................................15
4.1 系统数据源的设置...........................................15
4.2 表、关系模型和数据库的概述.................................17
4.3 范式与建表的规范化.........................................17
4.4 系统数据库的详细建立.......................................19
第五章.系统功能模块设计.......................................22
5.1 客户端.....................................................22
5.1.2 会员注册 ............................................33
5.1.3 商品查询 ............................................35
5.1.4 新闻中心 ............................................36
5.2 后台管理端.................................................41
5.2.1 最新商品 ............................................45
5.2.3 售后服务 ............................................46
5.2.4 支持付款 ............................................47
第六章.结束语 ..................................................49
致谢...............................................................50
参考文献: .......................................................51
浙江警官职业学院
5
第一章.前 言
1.1 问题的提出
对于基于 Web 平台的网上购物系统,存在着一个前台应用和后台管理的问题。而无论前
台还是后台,都要对数据库进行调用和操作。因此如何创建网络数据库,以及客户端如何调
用服务器端的数据库成为实现网上购物的一个关键性问题。
1.2 问题的解决
在这里,我采用 B/S 模式来实现客户端对服务器端的调用,所谓 B/S 模式即浏览器/服务器
模式,是一种从传统的二层 C/S 模式发展起来的新的网络结构模式。在 B/S 模式中,客户端
运行浏览器软件。浏览器以超文本形式向 Web 服务器提出访问数据库的要求,Web 服务器接
受客户端请求后,将这个请求转化为 SQL 语法,并交给数据库服务器,数据库服务器得到请
求后,验证其合法性,并进行数据处理,然后将处理后的结果返回给 Web 服务器,Web 服务
器再一次将得到的所有结果进行转化,变成 HTML 文档形式,转发给客户端浏览器以友好的
Web 页面形式显示出来。
而对于网络数据库的创建,则是利用 ASP 技术来解决。ASP(Active Server Pages 动态网
页)是微软公司推出的一种用以取代 CGI(Common Gateway Interface 通用网关接口)的技术。
目前,Internet 上的许多基于 Windows 平台的 Web 站点已开始应用 ASP 来替换 CGI。 简单地
讲,ASP 是一个位于服务器端的脚本运行环境,通过这种环境,用户可以创建和运行动态的
交互式 Web 服务器应用程序,如交互式动态网页,包括使用 HTML 表单收集和处理信息,上
传与下载等等。
在电子商务中,对用户而言,进行网上信息查询的目的是寻找自己需要的产品或服务,
而对于商品或服务提供者来说,其目的则是向用户推销自己的产品或服务。因此,让用户通
过浏览器查询服务器的后端数据库是许多 Web 服务提供者必需有的服务,ASP 通过内置的
ADODB 组件来实现这一功能。可以使用 ADO 去编写紧凑简明的脚本以便连接到 ODBC 兼
容的数据库和 OLE DB 兼容的数据源。至于实现的细节,在后续部分的网络数据库章节中有
详细介绍。