1
网上书系统
中文摘要:网上书店系统要实现的功能非常多,最重要的
当属图书的销售,也就是管理库房中的图书,以及管理用户
的购物车,从而实现结帐等一系列功能。另外,网上书店系
统还需要提供给用户查找数据库中图书相关记录的功能。同
时,为了保证图书交易的正常进行,必须对用户的身份的身
份进行验证。最后给系统还必须具有管理员的功能,允许管
理员对整个系统的数据进行操作。
根据系统功能的要求,网上书店系统可以分为三个模块,
可以分为用户管理系统、书店销售系统以及在线管理系统。
网上书店系统是目前 Internet 上广泛使用的在线系统
之一,它要实现的功能非常多,最重要的当属图书的销售,
也就是管理库房中的图书,以及管理用户的购物车,从而实
现结帐的一系列功能。
关键词:ASP 语言、Access 数据库、 HTML 语言、 SQL
数据库
2
Abstrast : The on-line bookstore system must realize function extremely
many, is most important when is the books the sale,
also is manages in the storehouse the books, as well as management user's
shopping vehicle,
thus realization pay up and so on a series of functions. Moreover, the on-line
bookstore system also needs to provide to the user in the search database the books
correlation recording function.
At the same time, in order to guarantee the books transaction normally carries
on, must carry on the confirmation to user's status status. Finally gives the system
also to have to have manager's function,
allows the manager to carry on the operation basis system function to the
overall system data the request,
the on-line bookstore system may divide into three modules, may divide into the
user management system management system,
the bookstore sells the system as well as the on-line management system
management system on-line bookstore system is on present Internet one of
widespread use on-line systems,
it must realize function extremely many, is most important when is the books
the sale, also is manages in the storehouse the books, as well as management user's
shopping vehicle,
thus realization pay up a series of functions.
Key word:ASP language, Access database, HTML language, SQL database
3
目 录
第一章系统设计....................................
1.1 目标设计.......................................
1.2 系统功能设计...................................
第二章数据库设计与实现............................
2.1 需求分析........................................
2.2 逻辑设计........................................
2.3 创建数据库和表..................................
第三章系统和数据库的配置...........................
3.1 后台服务器配置..................................
3.2 后台数据库的配置................................
3.3 后台全局配置文件................................
第四章前端网络页面的开发与设计
4.1 系统首页........................................
4.2 主页面........................................
4.3 注册检查页面....................................
4.4 用户注册页面....................................
4.5 修改用户注册信息页面............................
4
4.6 图书查找页面...................................
4.7 购买图书页面....................................
4.8 订单检查页面....................................
4.9 管理员首页.....................................
4.10 浏览图书列表页面...............................
4.11 浏览图书详细信息页面...........................
4.12 修改图书信息页面...............................
4.13 添加图书信息页面...............................
4.14 删除图书页面...................................
5.0 结束语................................... .....
5
1 系统设计
(1.1)目标设计
1 用户登录及身份验证要求
系统用户注册
验证用户的注册信息
系统用户进入系统时的身份验证
系统用户在不同页面浏览是的身份验证
2 网上书店系统要求
允许用户浏览所有图书
允许用户按图书种类进行查找
允许用户购物自己喜欢的图书
允许用户对购物车进行管理
系统实现订单的处理
系统完成整的购物流程
3 图书销售系统的管理子系统要求
对管理员的身份进行验证
对数据库中的图书信息进行管理
对数据库中的用户信息进行管理
对数据库中的订单信息进行管理
(1.2)系统功能设计
根据系统功能的要求,网上书店系统可以分为 3 个模块:用户管理模块、
图书销售系统以及在线管理系统。
对于用户管理模块,根据系统功能的分析,他具有的功能应该包括对用户
的注册的检查、用户注册信息的添加以及用户注册信息的修改等。
对于图书销售系统,根据系统的功能分析,它应该具有 的功能包括允许
用户查找图书信息、浏览图书信息、允许用户购买图书、对购物车进行管理,
最后还能处理用户的订单记录、并发送到后台数据库。
对于系统附加的图书管理系统,根据系统的功能分析,它应该具有的功能
包括允许管理员浏览整个系统的图书,对图书信息进行修改(包括删除某些图
书),以及添加新的图书信息。