BBS论坛管理系统的开发与实现(SQL)

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

摘  要 
BBS的英文名称是Bulletin Board System,翻译为中文就是“电子公告板”。BBS在上世纪九十年代进入中国,并迅速普及。本设计的目的是用asp和SQL开发一个简易的BBS系统,并实现账户安全保护。此外,BBS系统有操作简单、界面友好的特点,并具有广泛的应用前景。BBS系统开发主要讲述了系统设计的基本功能和方法。接着以BBS系统为例,逐一介绍开发的步骤:系统分析、系统设计、系统实现。在系统分析中先后用数据流程图、系统的功能结构图分析了BBS系统所需的各种数据。在BBS系统的设计中,详细的展现了系统的各个功能模块,所需的数据库表及表字段,菜单的设计等,并通过运用MD5函数,实现用户账户的安全保护。在BBS系统的实现中,取得了系统预期的成果,基本使各个模块的功能得以实现,并给出了模块实现的核心代码和主要的界面设计。

关键词:BBS系统;asp;SQL;账户安全

Development of BBS System and Implementation of Account Security Protection
Abstract
BBS’s English name is Bulletin Board System. In 90's of the last century BBS enters China and becomes popular. Aim of this design is to develop a simple system of BBS based on asp and SQL, and the implementation of account Security Protection. Furthermore, BBS system is good for easy operation and friendly interface, it has comprehensive application foreground. Development of BBS System mainly narrates basic function and method for System Design. Then take this system as an example, recommend developing the step of this system one by one: system analysis, system design, and system realization. Successively used the data stream chart the system function structure drawing in the system analysis to analyze each kind of data which the BBS system needed. In the design of the system, detailed each function module which has represented the system, necessary database form and field, design of the menu, and implementation of user's account security protection by using MD5 function. In the realization of the system, I got anticipated achievement, realized each module’s basic function, and showed the modules realization core code and the main GUI design.

Key words: BBS system;asp;SQL;Account security

系统功能要求
一个简易的BBS系统应具有的基础功能,包括新用户注册、用户登录、游客登录、发表帖子、阅读帖子、回复帖子的文章、用户资料修改,发送留言等。
本系统操作用户按不同级别依次可分为:游客,普通用户、版主用户、管理员。
普通用户功能要求---通用功能:发表或回复帖子、个人资料维护、用户留言,退出等。
版主用户功能要求---通用功能:继承普通用户的功能,能删除所属版面内的帖子。
管理员功能要求---通用功能:继承普通用户的功能,能删除BBS内所有版面里的帖子。
账户安全问题的实现:运用MD5算法,实现用户账户的安全。

系统的数据要求
根据系统的功能需求,本系统管理和维护以下几种数据元素(实体Entity):用户、管理员、帖子。
(1)用户实体:会员用户包含这样一些基本属性:用户名、用户密码、用户EMAIL、性别、生日,所在地区,以及邮箱。
(2) 管理员:一个管理员可以删除BBS论坛里面各个版面的帖子,而版主用户,只能删除其自身所在版面的帖子。
(3) 帖子:帖子包含以下一些基本属性:所属版面,作者,标题,帖子内容,帖子书写时间等等。

 












目  录
1 引言 1
1.1 BBS概念与发展背景 1
1.2 BBS系统的应用 1
2 BBS理论基础 1
2.1 BBS相关理论基础 1
2.2 BBS开发运行环境 2
3 系统功能需求分析 3
3.1 BBS系统的综合要求 3
3.1.1  系统功能要求 3
3.1.2  系统的数据要求 3
3.2 数据库E-R图 3
4 系统概要设计 4
4.1 模块的划分与功能设计 4
4.2 数据库结构的设计 5
5 系统详细设计 7
5.1 论坛首页模块 7
5.1.1  功能描述 7
5.1.2  界面设计 7
5.1.3  工作流程及代码设计 8
5.2  新用户注册模块 8
5.2.1  功能描述 8
5.2.2  界面设计 9
5.2.3  工作流程及代码设计 9
5.3  会员登陆模块 10
5.3.1  功能描述 10
5.3.2  界面设计 11
5.3.3  工作流程及代码设计 11
5.4  用户资料修改模块 12
5.4.1  功能描述 12
5.4.2  界面设计 12
5.4.3  工作流程及代码设计 12
5.5  发帖模块 13
(优秀毕业设计:www.2bysj.cn)
5.5.1  功能描述 13
5.5.2 界面设计 13
5.5.3  工作流程及代码设计 13
5.6  留言模块 14
5.6.1  功能描述 14
5.6.2  界面设计 15
5.6.3  工作流程及代码设计 15
5.7  账户安全保护的实现 16
5.7.1  系统安全描述 16
5.7.2  md5算法描述 16
5.7.3  账户安全的实现 17
6 系统测试 17
结    论 19
参考文献 19
致    谢 20
声    明 21