资源描述:
《2017毕业论文-基于asp的网络信息发布系统的设计与实现》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、基于ASP的网络信息发布系统的设计与实现ASPWeb-basedNewsPublishingSystemDesignandImplementation36摘要摘要随着网络应用的丰富和发展,很多网站往往不能迅速跟进大量信息衍生及业务模式变革的脚步,常常需要花费许多时间、人力和物力来处理信息更新和维护工作;遇到网站扩充的时候,甚至还需重新建设网站,针以上问题作者开发了本文讨论的网络信息发布系统。该系统的用户可以通过一个简单的界面加入数据,然后系统会按定制的栏目和固定布局显示这些信息。该系统将信息发布和更新过程简化到只需要录入文字和上传图片,
2、从而大大减轻了网站更新维护的工作量。本文讨论的系统基于浏览器/服务器架构,采用asp技术开发,以IIS5为web服务器,数据库为Access2003。系统核心功能模块包括:栏目菜单的显示、栏目内新闻的显示、新闻搜索、新闻评论、添加新闻、新闻的修改和删除、新闻栏目管理等。本文首先分析了网络信息发布系统的基本需求和基本功能,然后设计网络信息发布系统的基本页面,最后通过代码实现网络信息发布系统的所有功能关键词:网络信息发布,ASP,HTML,Css,JavaScript.36AbstractAbstractWiththeenrichmenta
3、nddevelopmentofnetworkapplications,manywebsitescannotfollowthestepoflotsinformationderivedandmodelupdated,ittakesalotoftime,manpowerandmaterialresourcestohandleupdatesandmaintenancework;encountersiteexpansion,whenitevenneedtore-buildingsite,accordingtotheaboveproblemsthi
4、spaperhasdevelopedanetworkofinformationdistributionsystem.Thesystemuserinterfacecanbeaddedthroughasimpledata,thenthesystemwillbefixedbycustomlayoutcolumnsanddisplaytheinformation.Thesystemwillsimplifytheprocessofinformationdistributionandupdatestothetextonlyentryanduploa
5、dimages,therebygreatlyreducingtheworkloadofwebsiteupdatingandmaintenance.Thisarticlediscussesthesystembasedonbrowser/serverarchitecture,usingasptechnologydevelopment,withIIS5asawebserver,databaseAccess2003.Systemcorefunctionmodulesinclude:menudisplay,newsdisplay,newssear
6、ch,newscommentary,addnews,revise,anddeletenews,newssectionmanagement.Thispaperanalyzesthenetworkinformationdistributionsystem,basicneedsandbasicfunctions,andthendesignabasicwebpageinformationreleasesystem,andfinallythroughthecodeallthenetworkinformationdistributionsystem
7、functions.Keywords:NetworkInformationRelease,ASP,HTML,Css,JavaScript.36目录目录第1章绪论11.1问题的提出11.2相关研究现状11.3研究目标和内容11.4研究方法2第2章网络信息发布系统需求分析32.1系统分析32.1.1开发工具选用介绍32.1.2总体需求分析32.1.3系统流程分析42.1.4性能需求分析52.1.5运行环境分析62.2数据库分析62.2.1数据库选用62.2.2数据库需求分析7第3章网络信息发布系统设计83.1后台功能模块设计83.1.1后台
8、登陆设计83.1.2后台功能模块设计83.1.2.1图文管理设计83.1.2.2用户管理设计113.2前台用户交互设计133.3数据库设计163.3.1创建数据库163.3.2数据库逻辑结构设计17第4章网