wwwxxxx日本,国产精品九九,日日夜夜免费视频,亚洲无av码在线中文字幕

asp.net大學生選課系統(tǒng)畢業(yè)論文.doc

約19頁DOC格式手機打開展開

asp.net大學生選課系統(tǒng)畢業(yè)論文,摘 要隨著在校大學生的不斷增加,學生選課系統(tǒng)也是學校對學生管理中不可缺少的一部分。以往的選課方法是使用人工的方法管理文件檔案,這種管理方式存在許多的缺點:效率低、保密差,另外時間一長,將產(chǎn)生大量的文件和數(shù)據(jù),這對于查找、更新和維護都帶來不少的困難。隨著科學技術(shù)的不斷提高,計算機已經(jīng)進入人類社會的各個領(lǐng)域并發(fā)揮著越來越重...
編號:10-263555大小:354.00K
分類: 論文>計算機論文

內(nèi)容介紹

此文檔由會員 wanli1988go 發(fā)布

摘 要

隨著在校大學生的不斷增加,學生選課系統(tǒng)也是學校對學生管理中不可缺少的一部分。以往的選課方法是使用人工的方法管理文件檔案,這種管理方式存在許多的缺點:效率低、保密差,另外時間一長,將產(chǎn)生大量的文件和數(shù)據(jù),這對于查找、更新和維護都帶來不少的困難。隨著科學技術(shù)的不斷提高,計算機已經(jīng)進入人類社會的各個領(lǐng)域并發(fā)揮著越來越重要的作用。作為計算機應(yīng)用的一部分,實用技術(shù)絕對選課信息進行管理,具有手工管理所無法比擬的優(yōu)點。例如:查找方便、可靠性高、存儲量大、保密性好、壽命長、成本低等。
本文通過分析瀏覽器/服務(wù)器結(jié)構(gòu)的特點并結(jié)合選課的實際情況簡單的介紹了系統(tǒng)各功能模塊及數(shù)據(jù)庫的設(shè)計,著重討論了用ASP.NET技術(shù)和SQL Server 2005 開發(fā)選課系統(tǒng)的數(shù)據(jù)庫的訪問技術(shù)和動態(tài)網(wǎng)頁制作技術(shù),并給出了一些可以實現(xiàn)的核心代碼。通過該系統(tǒng),使學生可以很方便的在校園網(wǎng)上進行網(wǎng)上選課。該系統(tǒng)在Windows XP系統(tǒng)和VS2005平臺下開發(fā)完成,使用C#作為ASP.NET的開發(fā)語言,SQL Server 2005作為數(shù)據(jù)庫。系統(tǒng)有較高的安全性和較好的性能。其中連接數(shù)據(jù)庫的字符串可以隨時在web.config里修改。代碼盡量使用了存儲過程和盡量減少了數(shù)據(jù)庫連接打開的時間來提高性能。
本文除了有對程序的系統(tǒng)分析、總體設(shè)計、數(shù)據(jù)庫設(shè)計、功能實現(xiàn)等主體部分外,還介紹了ASP.NET和數(shù)據(jù)庫的結(jié)合的基本內(nèi)容。
關(guān)鍵詞:學生選課、 瀏覽器/服務(wù)器、 ASP.NET、VS 2005、 SQL Server 2005數(shù)據(jù)管理系統(tǒng)







Abstract

With the continuous increase in college students, students in schools of students elective system is also an integral part of management. Previous elective method is to use artificial methods to manage file archives, this management approach has many disadvantages: low efficiency, poor security, while over time, will generate a large number of documents and data, which for finding, updating and maintenance of bring a lot of difficulties. With the continuous improvement of science and technology, the computer has access to all areas of human society, and play an increasingly important role. As a part of computer applications and practical management of information technology is absolutely elective, with manual management incomparable advantages. For example: to find convenient, high reliability, large memory capacity, security and good, long life and low cost.
This paper analyzes the browser / server structure is characterized by combining the actual situation of elective a brief introduction of the system of functional modules and database design, focused on using ASP.NET technology and SQL Server 2005 Developer elective system, access to the database technology and dynamic web production techniques, and give some of the core code can be achieved. Through the system so that students can easily online Online Course on campus. The system is Windows XP system and VS2005 platform is developed using C # as the ASP.NET development language, SQL Server 2005 as a database. System has a higher security and better performance. In which the database connection string in the web.config where you can change at any time. The code to make use of the stored procedure and to minimize the database connection open time to improve performance.
This addition to the program's system analysis, overall design, database design, function and so the main part of the implementation, but also describes the combination of ASP.NET and database elements.
Keywords: Student elective, browser / server, ASP.NET, VS 2005, SQL Server 2005 database management system




目 錄
第一章 引言 4
1.1課題研究目的 4
1.2 課題研究的意義 4
第二章 系統(tǒng)分析與總體設(shè)計 5
2.1系統(tǒng)分析 5
2.2系統(tǒng)設(shè)計構(gòu)架 5
第三章 數(shù)據(jù)庫的設(shè)計和實現(xiàn) 6
3.1數(shù)據(jù)庫需求分析 6
3.2數(shù)據(jù)庫概念結(jié)構(gòu)設(shè)計 7
3.3數(shù)據(jù)表的設(shè)計 8
第四章 公共類與公共頁面設(shè)計 11
4.1 Web.config頁面設(shè)計 11
4.2 數(shù)據(jù)庫連接操作類—Db類 11
4.3 工具類MyUtility類 12
4.4 錯誤信息類和錯誤顯示頁面 13
第五章 系統(tǒng)說明書 13
5.1系統(tǒng)界面說明 13
5.1.1登錄界面 13
5.1.2學生選課界面 14
5.1.3學生查看選課界面 15
5.2系統(tǒng)登錄及瀏覽權(quán)限說明 16
第六章 總結(jié) 17
參考文獻 18
致 謝 19

第一章 引言
1.1課題研究目的
1.掌握采用Internet的TCP/IP協(xié)議,以B/S方式,ASP.NET編程技術(shù),多媒體技術(shù)。
2.掌握一種多任務(wù)多用戶操作系統(tǒng)
3.ASP.NET的動態(tài)網(wǎng)頁編程技術(shù)和SQL Server2005大型的數(shù)據(jù)庫。
4.學會使用VS2005開發(fā)工具。
5.培養(yǎng)相互合作的精神。
1.2 課題研究的意義
學生選課系統(tǒng)是一個學校不可缺少的部分,它的內(nèi)容對于學校的決策者和管理者來說都至關(guān)重要,所以學生選課系統(tǒng)應(yīng)該能夠為用戶提供充足的信息和快捷的查詢手段。但一直以來人們使用傳統(tǒng)人工的方式管理文件檔案,這種管理方式存在著許多缺點,如:效率低、保密性差,另外時間一長,將產(chǎn)生大量的文件和數(shù)據(jù),這對于查找、更新和維護都帶來了不少的困難。
隨著科學技術(shù)的不斷提高,計算機科學日漸成熟,其強大的功能已為人們深刻認識,它已進入人類社會的各個領(lǐng)域并發(fā)揮著越來越重要的作用。
作為計算機應(yīng)用的一部分,使用計算機對選課信息進行管理,有著手工管理所無法比擬的優(yōu)點.例如:檢索迅速、查找方便、可靠性高、存儲量大、保密性好、壽命長、成本低等。這些優(yōu)點能夠極大地提高人事勞資管理的效率,也是企業(yè)的科學化、正規(guī)化管理,與世界接軌的重要條件。
因此,開發(fā)這樣一套軟件成為很有必要的事..
丰满熟妇肥白一区二区在线| 婷婷六月开心综合激情| 黄网站欧美内射| 亚洲理论片无码| 最爽乱小说在线视频| 国产亚洲欧美一区二区三区在线播放 | 人人香蕉久久| 国产国拍亚洲精品Mv在线观看| 久久久,被视频| 国产精品综合av无码| 麻豆人妻无码性色AV专区| 爱欲av.com| 综合国产91精品| 亚洲人成电影在线观看青青| 欧美少妇日韩| 亚洲yyy一区| 真实国厂老熟女粗口对白aV| 色 亚洲欧美一| 又爽又爽又色| 久久久精品人妻久久影视| 一本一道中文字幕| 无码调教亚洲天堂av| 日韩欧美在线观看视频| 99超碰免费| 日韩无码线| 色视频www在线播放国产人成| 韩日欧美精品| 777亚洲欧美| 另类欧美| 97超碰超碰| 黄色av线上免费| 大余县| 久久人妻中文| 熟女熟妇av网站蜜桃| 午夜男女久久久久久久| 中文字幕日韩一区二区三区| 黄片一级免| av在线电影| 国产1区2| 欧美韩一区| 黄色网址你懂得的|