网上购书(书店)系统的设计与实现

以下是资料介绍,如需要完整的请充值下载. 本资料已审核过,确保内容和网页里介绍一致.  
无需注册登录,支付后按照提示操作即可获取该资料.
资料介绍:

摘   要
随着计算机技术的日益发展,现代社会已经到了真正的信息时代,如何掌握并应用信息就显得非常重要了。很多公司都利用互联网这个市场来达成协议,所以互联网也不再是单纯的传播媒体,它除了传播信息以外,还可成为转变社会形态的枢纽。互联网上的这个虚拟世界正在具体化、现实化,并逐渐与现实生活融为一体。
ASP是一种优秀的电子商务开发程序语言,因为其编辑简便、功能全面的特点,被广泛应用于电子商务网站的编辑制作、企业管理系统的开发等项目中。尤其是在电子商务网站的建设中,asp扮演着动态网页缔造者的重要角色。
Dreamweaver_MX集多种网页开发功能于一身,可以轻松、系统地完成几乎所有网页技术的编辑。它具有美观的操作界面及强大的编辑功能,在Dreamweaver_MX中编辑asp,可以很方便地应用各种辅助项目,实时测试编辑完成的动态网页,设计出功能完善的动态网页。
Microsoft Access是一种关系式数据库,关系式数据库由一系列表组成,表又由一系列行和列组成,每一行是一个记录,每一列是一个字段,每个字段有一个字段名,字段名在一个表中不能重复。是一种易于使用,配置简单的数据库。
本文中的网上书店系统,结合asp、Access与Dreamweaver_MX共同开发而成,具有用户使用更简单、界面更直观等优点,设计并实现用户管理、书籍管理、订单管理、购物结帐等功能。

关键字   数据库   连接   验证   asp   网上书店

ABSTRACT
One that is with technology of the computer is growing, the modern society has already reached real information age, how to grasp and use information to seem very important. A lot of companies make use of this market of Internet to reach an agreement, so Internet is no longer simple spread media, it besides information of propagating, and may become the pivot of changing the social shape. Specify pieces of world not fictitious on it is on Internet, reality, and integrate in actual life gradually.
ASP whether one outstanding e-commerce develop procedure language, because of its editor simple and convenient, function overall characteristic, widely used in development of making, enterprise's administrative system of the editor of the e-commerce website ,etc. in the project. Especially in the construction of the e-commerce website, asp is acting the dynamic webpage founder's important role.
Dreamweaver_MX incorporate developing the function in many kinds of webpages into an organic whole, can finish nearly all webpage editor of technology lightly and systematically. It has beautiful operation boundary plane and strong editing function, editor asp in Dreamweaver_MX, can use various kinds of auxiliary projects very conveniently, test the dynamic webpage that the editor finished in real time, design the dynamic webpage with perfect function.
Microsoft Access is a kind of relational expression database, the relational expression database is tabulated and made up by one, form competent is it make up to arranging by a series of, every and the entourage one record, every one word section, each word section have one word sections of name, word a name can repeat of first form. It is that one kind is easy to use, dispose the simple database.
Online bookshop system in the article, combine asp、Access and Dreamweaver_MX is it, have user use simple, interface getting ocular advantage to develop together originally, design and realize user management, books management, order manage, do shopping function of checking out etc.
Key words: Database    Connect    Validate    asp    Online Bookshop

网上书店设计概要
网上书店作为网上销售的一种形式,其前台的图书展示是虚拟的,但后台销存及配送体系却是具体而又现实的。没有强有力的后台支持,就不可能实现网上购书这种电子商务形式。网上购物由于有广大的销售群体,又有展示新产品的网络平台,所以通过电子商务可以迅速地对顾客的需求构成导向。同时,商家也可以通过互联网中的商务数据库,记录下每次访问、销售、购买形式和购物动态;以及客户对产品的意见,商家通过这些统计数据来获取客户对产品的满意度。

网上书店交易系统的功能模块大致分为:
▲用户信息模块
用户包括系统用户和商店客户。书店客户可通过页面进行注册申请及查看、更新注册信息。 
系统用户的作用:对系统用户进行管理,添加、删除、更新用户信息,对图书进行分类管理,添加、更新、删除图书信息,以及根据客户交易信息对客户的账单进行管理。
▲商品信息模块
主要包括图书类目管理、图书信息管理及图书交易处理。
图书类目管理: 网上书店交易系统对图书进行相应的分类,以方便管理。管理员可以创建和编辑图书类目,在添加新图书的时候需要选择相应的类目。
图书信息管理: 包含完整的图书信息,包括图书的查看、添加、更新、删除。
图书交易处理: 客户在购书时需要提交交易表单到图书管理员,只有等到确认后才能发货。
客户购书成功需要经历3个过程:首先客户将图书放入购物车(此时为“未提交”状态),然后结账即提交给图书管理员(此时状态为“已提交”),最后图书管理员确认并发货(状态为“已发货”)。

















目录
前  言 4
第一章 系统概述 5
1.1 网上书店设计概要 5
1.2 asp技术综述 6
1.2.1 asp的6大内建对象 6
1.2.2  asp与CGI的比较 7
1.2.3 asp与IIS 8
1.2.4 ADO简介 9
1.3 技术要点 9
第二章 数据库的设计与实现 11
2.1 创建数据库 11
2.2 数据库的连接 16
(优秀毕业设计:www.2bysj.cn)
第三章 网上书店系统设计 18
3.1 用户信息模块的实现 18
3.1.1 客户的注册、登录及退出 19
3.1.2 客户资料的查看、更新及密码的修改 23
3.2 图书信息模块的实现 26
3.2.1 分类的显示和详细信息的显示 26
3.2.2 图书的搜索 28
3.2.3 购物车功能的实现 33
3.3 系统管理模块的实现 37
3.3.1 图书的管理 38
3.3.2 客户和管理员用户的管理 41
第四章 网站的建立与运行环境 46
结束语 47
致  谢 48
参考文献 49