毕业设计mo模版

  • 格式:doc
  • 大小:8.38 MB
  • 文档页数:54

郑州轻工业学院 本科毕业设计(论文)

题 目 一种具有自维护功能 的网站的设计 学生姓名 王 静 专业班级 计算机科学与技术01级9班 学 号 07 院 (系) 计算机与通信工程学院 指导教师(职称) 李健勇(讲师) 完成时间 2005年06月10日 一种具有自维护功能的网站设计

II 一种具有自维护功能的网站设计 摘 要 传统的网站大多采用静态方式管理网站结构,而静态方式结构不利于网络的升级和维护。基于此,本文提出采用动态结构的网站的理念。 首先,对常用的网站开发工具ASP及相关开发环境进行了介绍。接着,根据自维护理念将网站划分为网站结构和网站功能。网站结构自维护模块负责对网站结构的生成和维护,网站功能实现模块则负责与传统网站相对应的各种功能。最后,给出一个示例对自维护网站的设计方法进行了验证。 基于分层的思想将网站分成结构和功能两层,自维护模块对应于结构层。这是本文的创新之处。

关键词 网站;自维护;ASP;设计 一种具有自维护功能的网站设计

III DESIGN OF A SELF-MAINTENANCE WEBSITE

ABSTRACT The website is managed in a static way traditionally, which is unconvenient for the upgrade and maintaince of the network. To overcome the disadvantage, a dynamic structure is put forward in this thesis. Firstly, one of the widely used website developing tools ASP and the relative developing environment are introduced. Then, according to the principle of self- maintenance, the website is devided into website structure and website function. The website structure module creates of the website and completes the self-maintenance of the website while the practical module answers for the various functions which are relevant to traditional websites. Finally, an example is given to demonstrate the self-maintenance design procedure. Deviding a website into structure layer and function layer is the innovation of the thesis. In the proposed multilayer design mthod, the self-maintenance is completed by structure layer.

KEY WORDS Website; From the maintenance; ASP; Design 一种具有自维护功能的网站设计

IV 目 录

摘 要 ................................................................................................ II ABSTRACT .......................................................................................... III 1 绪论 .................................................................................................... 1 1.1 背景 .............................................................................................. 1 1.2 应用现状 ...................................................................................... 3 1.3 问题提出 ...................................................................................... 4 1.4 本文的工作 .................................................................................. 4 1.5 本文结构 ...................................................................................... 5 2 ASP介绍 ............................................................................................. 6 2.1 ASP的特点 ................................................................................... 7 2.2 ASP的运行环境 ............................................................................ 8 2.3 ASP文件的结构 ............................................................................ 8 2.3.1 文件的组成 ......................................................................................... 8 2.3.2 页面的结构 ......................................................................................... 8 2.4 ASP的内建对象 ............................................................................ 8 2.5 ASP的内部组件 ............................................................................ 9 2.6 ASP与数据库连接 ....................................................................... 10 3 其它相关开发技术 ............................................................................ 11 3.1 IIS 5.1 ........................................................................................... 11 3.2 HTML语言 .................................................................................. 13 3.3 FrontPage 2000 ............................................................................. 15 4 网站设计 ........................................................................................... 17 4.1 模块划分 ..................................................................................... 17 4.2 自维护模块的功能 ...................................................................... 17 一种具有自维护功能的网站设计 V 4.2.1 自维护模块功能结构图 .................................................................... 18 4.2.2 注册模块类型 ................................................................................... 18 4.2.3 建立新模块 ....................................................................................... 19 4.2.4 修改模块结构参数 ............................................................................ 19 4.2.5 删除模块 ........................................................................................... 19 4.2.6 数据库操纵页面 ............................................................................... 19 4.2.7 用户管理 ........................................................................................... 20 4.3 数据库设计 ................................................................................. 20 4.3.1 自维护模块菜单表 ............................................................................ 20 4.3.2 BBS论坛数据表 ................................................................................ 21 4.3.3 新闻数据表 ....................................................................................... 22 4.3.4 聊天室数据表 ................................................................................... 22 4.3.5 留言板数据表 ................................................................................... 22 5 编程实现 ........................................................................................... 23 5.1 自维护模块 ................................................................................. 23 5.2 网站其他模块的介绍 .................................................................. 26 5.2.1 BBS论坛管理模块 ............................................................................ 26 5.2.2 新闻发布模块 ................................................................................... 31 5.2.3 聊天室模块 ....................................................................................... 36 5.2.4 留言板模块 ....................................................................................... 40 6 结论 ................................................................................................... 43 6.1 收获 ............................................................................................. 43 6.2 需要进一步研究的问题 .............................................................. 43 致 谢 ............................................................................................... 46 参考文献 ............................................................................................... 47 附录一 图索引.................................................................................... 48 附录二 表索引.................................................................................... 49