在线考试系统项目报告Word文档下载推荐.docx
《在线考试系统项目报告Word文档下载推荐.docx》由会员分享,可在线阅读,更多相关《在线考试系统项目报告Word文档下载推荐.docx(29页珍藏版)》请在冰豆网上搜索。
(1)试卷添加:
教师可以添加试卷,可以从课程,各种题型的数量等方面对某份试卷进行添加。
(2)题库添加:
教师可以对添加新的考题、删除旧有考题、修改原有考题,其中试题类型包括判断题、填空题、选择题;
1.2系统分析
1.2.1在管理端子系统中:
(1)系统维护模块主要是针对管理员,学生,教师,班级等信息进行修改操作;
(2)权限管理模块主要是对各使用者对系统的操作权限进行管理。
例如学生只能查看个人信息,选择试卷,答卷,查看成绩等;
教师只能出题,组卷,判卷,查看学生成绩等;
管理员可以全面对系统进行操作及数据维护等。
1.2.2在教师端子系统中:
(1)出题模块主要是由教师根据题型不同向题库中输入题目以及答案,方便组卷。
题目自动存入对应的数据库中。
(2)组卷模块中可以由系统随机组卷,输入各题型的数量,分值,系统自动从题库中随机选择题目构成试卷;
也可以由教师自主选择题目进行出题。
(3)统计成绩模块中教师可以根据学生答卷情况对成绩进行统计,方便教师对学生答卷情况有直观了解,利于教学。
(4)提交成绩模块由教师将学生综合成绩情况输入相关管理系统。
1.2.3在学生端子系统中:
(1)选择试卷模块由学生选择所要进行的考试试卷。
(2)答卷模块显示学生所选试卷,供学生作答,选择判断直接对选项进行选择,主观题填写在相应的文本框中。
(3)交卷模块会自动根据题库中的信息对学生的选择判断题进行判卷,减少了教师的工作量。
1.3功能分析
1.3.1功能模块图设计
1.4用例图设计
1.4.1学生用例图设计
1.4.2教师用例图设计
第二章系统设计
2.1总体时序图设计
2.2数据库设计
2.2.1试卷类型表设计
2.2.2试题表设计
2.2.3试题内容表设计
2.2.4试卷表设计
2.2.5试卷详情表设计
2.2.6试卷分值表设计
2.2.7考生答卷表设计
2.2.8考生答卷详情表设计
2.3表见关系设计
2.3.1试题
2.3.2章节试题统计
2.3.3试卷
2.3.4试卷详细
2.3.5试卷考题详细
2.3.6考卷列表
第三章程序设计
3.1在线考试系统后台程序实现
3.1.1母版页设计
3.1.2后台题库添加页面设计
3.1.3后台题库管理页面设计
3.1.4后台试卷生成
3.1.5后台试卷详情查看页面
3.1.6后台试卷管理页面
3.2在线考试系统前台程序实现
3.2.1试卷列表页面设计
3.2.2前台考试页面设计
第四章编码设计
4.1试卷详情的编码
publicpartialclassAdmin_OnlineExam_PaperDetail:
System.Web.UI.Page
{
protectedvoidPage_Load(objectsender,EventArgse)
{
if(!
Page.IsPostBack)
InitPageData();
}
privatevoidInitPageData()
intchoiceCount=0,blankCount=0,judgeCount=0;
doublechoicePoint=0,blankPoint=0,judgePoint=0;
Stringsql="
"
;
StringpaperID=Request.QueryString["
paperID"
];
sql="
select*fromUV_Exam_PaperQuestionDetailwherePaperID="
+paperID;
DataTabledtChoice=newDataTable();
dtChoice.Columns.Add("
chooseNo"
);
questionContent"
RightAnswer"
optionA"
optionB"
optionC"
optionD"
DataTabledtBlank=newDataTable();
dtBlank.Columns.Add("
blankNo"
DataTabledtJudge=newDataTable();
dtJudge.Columns.Add("
judgeNo"
StringsqlQuery=sql+"
andQuestionTypeID=1"
DataTabledtAll=CommonUtils.GetTableBySql(sqlQuery).Copy();
for(inti=0;
i<
dtAll.Rows.Count;
i++)
DataRowdrAll=dtAll.Rows[i];
DataRowdrTmp=dtChoice.NewRow();
BooleanisRightAnswer=Convert.ToBoolean(drAll["
IsRight"
]);
drTmp["
]=i/4+1;
if(i%4==0)
]=drAll["
QuestionContent"
if(isRightAnswer)drTmp["
]="
A"
SelectContent"
i++;
drAll=dtAll.Rows[i];
isRightAnswer=Convert.ToBoolean(drAll["
if(i%4==1)
B"
if(i%4==2)
C"
if(i%4==3)
D"
dtChoice.Rows.Add(drTmp);
choiceCount=dtChoice.Rows.Count;
choicePoint=Convert.ToDouble(dtAll.Rows[0]["
Point"
sqlQuery=sql+"
andQuestionTypeID=2andIsRight=1"
dtAll=CommonUtils.GetTableBySql(sqlQuery).Copy();
i++)
DataRowdrTmp=dtBlank.NewRow();
]=i+1;
dtBlank.Rows.Add(drTmp);
blankCount=dtBlank.Rows.Count;
blankPoint=Convert.ToDouble(dtAll.Rows[0]["
andQuestionTypeID=3"
i+=2)
DataRowdrTmp=dtJudge.NewRow();
]=i/2+1;
if(isRightAnswer)
正确"
else
错误"
dtJudge.Rows.Add(drTmp);
judgeCount=dtJudge.Rows.Count;
judgePoint=Convert.ToDouble(dtAll.Rows[0]["
dtlChoose.DataSource=dtChoice.DefaultView;
dtlChoose.DataBind();
lblChooseCount.Text=Convert.ToString(choiceCount);
lblChoosePoint.Text=Convert.ToString(choicePoint);
lblChooseTotalPoint.Text=Convert.ToString(choiceCount*choicePoint);
dtlJudge.DataSource=dtJudge.DefaultView;
dtlJudge.DataBind();
lblJudgeCount.Text=Convert.ToString(judgeCount);
lblJudgePoint.Text=Convert.ToString(judgePoint);
lblJudgeTotalPoint.Text=Convert.ToString(judgeCount*judgePoint);
dtlBlank.DataSource=dtBlank.DefaultView;
dtlBlank.DataBind();
lblBlankCount.Text=Convert.ToString(blankCount);
lblBlankPoint.Text=Convert.ToString(blankPoint);
lblBlankTotalPoint.Text=Convert.ToString(blankCount*blankPoint);
lblPageTitle.Text=Convert.ToString(dtAll.Rows[0]["
PaperName"
lblExamTimeLength.Text=Convert.ToString(dtAll.Rows[0]["
TimeLength"
lblExamStartTime.Text=Convert.ToString(dtAll.Rows[0]["
ExamDate"
lblQuestionCount.Text=Convert.ToString(choiceCount+judgeCount+blankCount);
lblTotalScore.Text=Convert.ToString(choiceCount*choicePoint+judgeCount*judgePoint+blankCount*blankPoint);
lblCreateDateTime.Text=Convert.ToString(dtAll.Rows[0]["
CreateDate"
}
4.2题库管理的编码
publicpartialclassAdmin_OnlineExam_Question:
{
privatestringsql="
privateUpdatePanelUpdatePanel1;
UpdatePanel1=(UpdatePanel)Master.FindControl("
UPN"
if(Session[CommonUtils.Session_UserId]==null)
Response.Write("
<
Scriptlanguage='
javascript'
>
alert('
请先登录!
'
)<
/script>
Response.End();
else
}
stringsubjectID=this.ddlSubject.SelectedValue;
stringchapterID=this.ddlChapter.SelectedValue;
stringquestionTypeID=this.ddlQuestionType.SelectedValue;
stringteacherID=Convert.ToString(Session[CommonUtils.Session_UserId]);
;
select*fromUV_Select_TeacherSubjectRelationwhere1=1"
sql+="
andteacherID="
+teacherID;
CommonUtils.ECDropDownList(this.ddlSubject,sql,"
subjectName"
"
subjectID"
true);
select*fromUT_Exam_QuestionType"
CommonUtils.ECDropDownList(this.ddlQuestionType,sql,"
questionTypeName"
ID"
0"
.Equals(subjectID)&
&
!
.Equals(subjectID))
select*fromUT_Base_ChapterwheresubjectID="
+subjectID;
CommonUtils.ECDropDownList(this.ddlChapter,sql,"
chapterName"
StringoperFlag=Request.QueryString["
operFlag"
if(operFlag==null)
operFlag="
add"
if("
.Equals(operFlag))
InitPageData_Add();
this.btnClose.Visible=false;
this.btnConfirm.Visible=true;
this.btnModify.Visible=false;
elseif("
query"
stringquestionID=Request.QueryString["
InitPageData_NotAdd(questionID);
this.btnClose.Visible=true;
this.btnConfirm.Visible=false;
modify"
this.btnModify.Visible=true;
protectedvoidddlSubject_SelectedIndexChanged(objectsender,EventArgse)
InitDDLChapter(subjectID);
privatevoidInitDDLChapter(stringsubjectID)
protectedvoidddlQuestionType_SelectedIndexChanged(objectsender,EventArgse)
if(questionTypeID.Equals("
1"
))
this.pnlSelect.Visible=true;
this.pnlBlanck.Visible=false;
this.pnlJudge.Visible=false;
3"
this.pnlSelect.Visible=false;
this.pnlJudge.Visible=true;
2"
this.pnlBlanck.Visible=true;
privatevoidInitPageData_Add()
this.txtBlankAnswer.Text="
this.txtBlankContent.Text="
this.txtJudgeContent.Text="
this.txtSelectA.Text="
this.txtSelectB.Text="
this.txtSelectC.Text="
this.txtSelectContent.Text="
this.txtSelectD.Text="
this.rdbRightAnswer.SelectedIndex=-1;
this.rdlJudgeResult.SelectedIndex=-1;
第五章编码测试
5.1页面测试
测试用例阶段
实际测试阶段
页面操作
判断方法
期望输出
实际输出
备注
打开页面
1.开考