论文格式
电气工程 会计论文 金融论文 国际贸易 财务管理 人力资源 轻化工程 德语论文 工程管理 文化产业管理 信息计算科学 电气自动化 历史论文
机械设计 电子通信 英语论文 物流论文 电子商务 法律论文 工商管理 旅游管理 市场营销 电视制片管理 材料科学工程 汉语言文学 免费获取
制药工程 生物工程 包装工程 模具设计 测控专业 工业工程 教育管理 行政管理 应用物理 电子信息工程 服装设计工程 教育技术学 论文降重
通信工程 电子机电 印刷工程 土木工程 交通工程 食品科学 艺术设计 新闻专业 信息管理 给水排水工程 化学工程工艺 推广赚积分 付款方式
  • 首页 |
  • 毕业论文 |
  • 论文格式 |
  • 个人简历 |
  • 工作总结 |
  • 入党申请书 |
  • 求职信 |
  • 入团申请书 |
  • 工作计划 |
  • 免费论文 |
  • 合作期刊 |
  • 论文同学网 |
搜索 高级搜索

当前位置:论文格式网 -> 毕业论文 -> 计算机论文
毕业论文标题:

基于.NET的课程学习系统的设计与实现

 本文ID:LWGSW13624 价格:收费积分/100
扫一扫 扫一扫
本站会员可自行下载:下载地址 基于.NET的课程学习系统的设计与实现 (收费:1000 积分)  

论文字数:14963,页数:44 有开题报告,任务书

摘   要
 本文主要介绍了基于.NET的课程学习系统的设计与实现。
 首先,在本文先描述了该系统所使用的新技术。由于LearningSystem使用的是VS.NET2005开发平台。该平台较之VS.NET2003新增了很多功能。故本系统在实现时,尽可能的使用这些新技术。这些技术包括:母版页,数据源控件,数据绑定控件,登陆控件,站点导航等。
 接下来,本文详细地描述了系统的设计过程。先讲述了系统架构的选择,通过对比各种架构进行比较分析,最终鉴于三层结构的种种优势,LearningSystem采用了三层架构实现。然后根据需求分析报告,将系统分为5个功能模块:学生个人信息管理,资源下载,作业提交,简易论坛和网上测试,并且仔细的描述了各个模块的工作流程。同时,本文还介绍了LearningSystem的数据库设计与结构。
 最后,本文详细地描述了网站和各个类库的实现方式。按照系统的三层结构,逐条介绍各部分的实现代码。

关键词:三层架构,母版页,数据源控件,数据绑定控件,身份认证,登陆控件
Design and Implementation of Learning System
based on the .NET Framework
 
                                                         
Abstract
 This paper describes the design and implementation of Learning System based on VS.NET.
 First, at the beginning part ,this paper presents the technology that the System uses. Compared with the VS.NET2003 develop environment, this Learning System which is based on VS.NET2003 has many new functions. I try my best to use the new technology, including Master Pages , Data Source Controls , Data Controls , Role Management , Login Controls and so on.
 Second, this paper describes the design process of the system in detail. It describes the decision of system structure. Trough the comparison of each structure, the Three-tier Structure is adopted by the Learning System as it has more advantages. Then the paper presents the 5 modules of the system according to the requirement analysis report, including Students’ individual information management, resource download, homework submission, simple bbs and test online and describes the implementation flow of each module in detail. In addition, this paper describes the design and structure of the database for the Learning System.
 Finally, this paper describes the implementation of the system and each class libraries in detail and introduces the code of each part according to the Three-tier Structure.
Key Words: the Three-tier Structure , Master Pages , Data Source Controls , Data Controls , Role Management , Login Controls

目     录
1 绪论 1
1.1 开发平台简介 1
1.2 学习系统概论 1
2技术背景 1
2.1绪论 1
2.2母版页 1
2.3数据源控制 2
2.4数据显示控件 4
2.5登陆控件 5
2.6数据驱动的站点导航 6
2.7验证控件 6
3系统架构 7
3.1 系统架构的选择 7
3.1.1 LearningSystem采用三层架构实现。 7
3.1.2三层架构的设计 7
3.2 三层架构的实现 8
3.2.1 建立表示层: 9
3.2.2 建立数据库访问层: 9
3.2.3 建立业务逻辑层: 9
3.2.4 添加引用: 9
4 系统设计 10
4.1 系统的功能模块 10
4.2 系统设计说明 10
4.2.1 学生个人信息管理 10
4.2.2 资源下载: 10
4.2.3 作业提交: 11
4.2.4 简易论坛: 11
4.2.5 网上测试: 12
4.3 系统数据库设计 13
5 系统实现 15
5.1 概述 15
5.2 用户表示层的实现 15
5.2.1 母版页的实现 15
5.2.2 学生个人信息管理 16
5.2.3 资源下载 18
5.2.4 作业提交 20
5.2.5 简易论坛 22
5.2.6 网上测试 23
5.2.7 登陆页面Login.aspx 25
5.2.8 Web.Config文件配置 25
5.3 数据访问层的实现 26
5.3.1 DAL概述 26
5.3.2 PrepareCommand函数 26
5.3.3 ExecuteNonQuery函数 26
5.3.4 ExecuteReader函数 27
5.4 业务逻辑层的实现 27
5.4.1概述 27
5.4.2 UserInfo类 28
5.4.3 ResourceDownload 类 29
5.4.4 HomeworkUpload类 31
5.4.5 BBS类 33
5.4.6 Test类 35
5.4.7 userControl类 37
6 结论 38
6.1 本文总结 38
6.2 系统改进和优化 38
致   谢 39
参考文献 40


相关论文
本论文在计算机论文栏目,由论文格式网整理,转载请注明来源www.lwgsw.com,更多论文,请点论文格式范文查看
上一篇:DS三维模型可视化平台设计与实现 下一篇:面向领域的工作流模板的设计与实现
Tags:基于 .NET 课程 学习系统 设计 实现 【收藏】 【返回顶部】
最新文章
热门文章
计算机论文
推荐文章

本站部分文章来自网络,如发现侵犯了您的权益,请联系指出,本站及时确认删除 E-mail:349991040@qq.com

论文格式网(www.lwgsw.com--论文格式网拼音首字母组合)提供计算机论文毕业论文格式,论文格式范文,毕业论文范文

Copyright@ 2010-2018 LWGSW.com 论文格式网 版权所有 蜀ICP备09018832号