freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內容

計算機考試管理系統(tǒng)的設計與實現(xiàn)-資料下載頁

2024-12-06 00:48本頁面

【導讀】畢業(yè)設計要求完成計算機考試管理系統(tǒng)軟件;管理員管理用戶和更正成績等功能;編程實現(xiàn)考試成績等內部管理;論文要求格式規(guī)范,層次清楚,闡述完整。本文著重闡述了學校教務管理系統(tǒng)的整體開發(fā)過程。介紹了系統(tǒng)的開發(fā)環(huán)境以及開。想以及對整個程序設計的規(guī)劃及具體實現(xiàn)。體層、數(shù)據(jù)訪問層、業(yè)務邏輯層組成。都是從實際研究中得出。

  

【正文】 go if exists (select 1 from sysobjects where id = object_id(39。QuestionInfo39。) and type = 39。U39。) drop table QuestionInfo go if exists (select 1 from sysobjects where id = object_id(39。ScoreInfo39。) and type = 39。U39。) drop table ScoreInfo go if exists (select 1 from sysobjects where id = object_id(39。UserInfo39。) and type = 39。U39。) drop table UserInfo go /*==============================================================*/ /* Table: AnswerInfo */ /*==============================================================*/ create table AnswerInfo ( AnswerId int identity, QuestionId int not null, UserId int not null, AnswerContent text not null, AnswerMarks float null default 0, GradeUserId int null, constraint PK_ANSWERINFO primary key (AnswerId) ) go 計算機考試管理系統(tǒng)的設計與實現(xiàn) 20 declare @CurrentUser sysname select @CurrentUser = user_name() execute sp_addextendedproperty 39。MS_Description39。, 39。評分人 39。, 39。user39。, @CurrentUser, 39。table39。, 39。AnswerInfo39。, 39。column39。, 39。GradeUserId39。 go /*==============================================================*/ /* Table: ExamInfo */ /*==============================================================*/ create table ExamInfo ( ExamId int identity, ExamName varchar(255) not null, ExamTime int not null, ExamContent text null, constraint PK_EXAMINFO primary key (ExamId) ) go /*==============================================================*/ /* Table: QuestionDetailInfo */ /*==============================================================*/ create table QuestionDetailInfo ( QuestionDetailId int identity, QuestionId int null, QuestionContent varchar(255) null, constraint PK_QUESTIONDETAILINFO primary key (QuestionDetailId) ) go /*==============================================================*/ /* Table: QuestionInfo */ /*==============================================================*/ create table QuestionInfo ( QuestionId int identity, ExamId int not null, QuestionType int not null, QuestionTitle varchar(255) not null, QuestionMarks float not null, QuestionAnswer text null, constraint PK_QUESTIONINFO primary key (QuestionId) ) go 21 /*==============================================================*/ /* Table: ScoreInfo */ /*==============================================================*/ create table ScoreInfo ( ScoreId int identity, ExamId int null, UserId int null, ScoreContent float null default 0, IsGive bit null, constraint PK_SCOREINFO primary key (ScoreId) ) go /*==============================================================*/ /* Table: UserInfo */ /*==============================================================*/ create table UserInfo ( UserId int identity, UserName varchar(15) not null, UserPwd varchar(60) not null, UserType int not null, constraint PK_USERINFO primary key (UserId) ) go 計算機考試管理系統(tǒng)開發(fā)實現(xiàn) 登錄模塊 主要功能:驗證用戶身份,提供用戶進入系統(tǒng)的入口。 登錄界面如圖 所示: 計算機考試管理系統(tǒng)的設計與實現(xiàn) 22 圖 計算機考試管理 系統(tǒng)登錄界面 登錄頁面主要代碼: protected void Page_Load(object sender, EventArgs e) { // 得到值 string type = [type].ToString()。 string name = [name].ToString()。 string pwd = [pwd].ToString()。 pwd = (())。 // 加密信息 int typeid = (type == student ? 1 : (type == teacher ? 2 : 3))。 UserManager userManager = new UserManager()。 if ((name, pwd,typeid)) { User user= (name)。 Session[User] = user。 switch () { case 1: (student/)。 break。 case 2: (teacher/)。 break。 case 3: (admin/)。 break。 default: (?error=+( 登錄類型錯誤!,))。 break。 } 23 } else { (?error= + (用戶名或密碼錯誤! , ))。 } } 系統(tǒng)學生登錄成功后模塊 主要功能:提供各項功能選擇,并開始系統(tǒng)任務。 首頁界面如圖 所示: 圖 計算機考試管理系統(tǒng)學生首頁界面 主頁頁面主要 代碼: %@ Page Language=C Auto
點擊復制文檔內容
研究報告相關推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1