资源描述:
《基于.net网上书店系统》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、ASP.NET网上书店系统摘要摘要随着Internet技术的发展,人们的日常生活已经离不开网络。Internet的发展历程以及目前的应用状况和发展趋势,可以充分地相信网络技术将极大的改变我们的生活和工作方式,甚至社会的价值观也会发生某种变化。正因如此,电子商务是互联网应用发展的必然趋势,我们开发了网上图书电子商城——网上书店。网上书店系统的主要任务是对图书购买进行计算机化的管理,网上书店网站主要由前台操作和后台管理两大模块组成。其中,前台模块实现了用户注册登陆、图书展示、图书查询、购物车和购物结账的功能,后台管理模块主要实现了
2、用户管理、图书管理、订单管理、类别管理的功能。该系统是采用C#作为开发语言,以VisualStudio2008作为开发工具,使用SQLServer2005作为数据库管理系统。本文首先介绍了网上书店的开发背景和相关技术,针对系统的功能特点提出了基于ASP.NET的设计思路,然后阐述了网上书店的设计与实现的过程,对个人模块前台操作模块进行了重点描述。关键词:网上书店;前台操作;ASP.NETIAbstractAbstractWiththedevelopmentofInternettechnology,people'sdailyli
3、fehasbeeninseparablefromthenetwork.Internet,theapplicationdevelopmentprocessandthecurrentstatusandtrends,youcanfullytrusttheInternettechnologywillgreatlychangethewayweliveandwork,andevensamechangesinsocialvaluesmayoccur.Forthisreason,e-commerceistheinevitabletrendof
4、developmentofInternetapplications,wehavedevelopedanonlinee-bookstore-onlinebookstore.Onlinebookstoresystem'smaintaskistobuythebookstocomputerizedmanagement,onlinebookstoresitemainlybythefrontoperationalandbackmanagementmodule.Amongthem,thefrontlandingmoduleimplement
5、stheuserregistration,bookdisplay,bookinformation,shoppingcartandcheckoutfunctions,backgroundmanagementmoduleimplementstheusermanagement,bookmanagement,ordermanagement,categorymanagementfunctions.ThesystemisusingC#asadevelopinglanguage,VisualStudio2008asadevelopmentt
6、ool,theuseofSQLServer2005asadatabasemanagementsystem.Thispaperintroducesthedevelopmentbackgroundoftheonlinebookstoreandrelatedtechnologies,thesystemfeaturesfortheproposeddesignideasbasedonASP.NET,andthendescribesthedesignandimplementationofonlinebookstores,mainlyfoc
7、usonthefrontoperatingmoduleofindivisulmodule.KeyWords:OnlineBookstore;ForegroundOperation;ASP.NETII目录目录第1章绪论11.1系统的开发背景11.2系统的开发目标11.3本文的组织2第2章系统开发平台及相关知识32.1.NET平台技术简介32.1.1.NET架构概述32.1.2ASP.NET应用程序的结构42.1.3C#语言简介52.1.4ADO.NET技术52.2三层体系结构62.3存储过程7第3章系统的分析与设计83.1系统可
8、行性分析83.2系统数据流分析93.3系统的功能分析83.3.1用户登陆93.3.2图书展示103.3.3购书车管理113.3.4购物结账管理123.4系统数据库设计与实现133.4.1概念结构设计133.4.2数据库逻辑结构设计14第4章个人模块的实现174.1登陆注册的实