論文格式
      電氣工程 會計論文 金融論文 國際貿易 財務管理 人力資源 輕化工程 德語論文 工程管理 文化產業管理 信息計算科學 電氣自動化 歷史論文
      機械設計 電子通信 英語論文 物流論文 電子商務 法律論文 工商管理 旅游管理 市場營銷 電視制片管理 材料科學工程 漢語言文學 免費獲取
      制藥工程 生物工程 包裝工程 模具設計 測控專業 工業工程 教育管理 行政管理 應用物理 電子信息工程 服裝設計工程 教育技術學 論文降重
      通信工程 電子機電 印刷工程 土木工程 交通工程 食品科學 藝術設計 新聞專業 信息管理 給水排水工程 化學工程工藝 推廣賺積分 付款方式
      • 首頁 |
      • 畢業論文 |
      • 論文格式 |
      • 個人簡歷 |
      • 工作總結 |
      • 入黨申請書 |
      • 求職信 |
      • 入團申請書 |
      • 工作計劃 |
      • 免費論文 |
      • 合作期刊 |
      • 論文同學網 |
      搜索 高級搜索

      當前位置:論文格式網 -> 畢業論文 -> 計算機論文
      畢業論文標題:

      基于.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.donglienglish.cn,更多論文,請點論文格式范文查看
      上一篇:DS三維模型可視化平臺設計與實現 下一篇:面向領域的工作流模板的設計與實現
      Tags:基于 .NET 課程 學習系統 設計 實現 【收藏】 【返回頂部】
      最新文章
      熱門文章
      計算機論文
      推薦文章

      本站部分文章來自網絡,如發現侵犯了您的權益,請聯系指出,本站及時確認刪除 E-mail:349991040@qq.com

      論文格式網(www.donglienglish.cn--論文格式網拼音首字母組合)提供計算機論文畢業論文格式,論文格式范文,畢業論文范文

      Copyright@ 2010-2018 LWGSW.com 論文格式網 版權所有 蜀ICP備09018832號

      感谢您访问我们的网站,您可能还对以下资源感兴趣:

      论文格式网:毕业论文格式范文