资源简介
计算机应用迅猛发展,网络应用不断扩大,如远程教育和虚拟大学的出现等,使得基于Web的在线考试系统成为现实。基于Web的在线考试系统可以发挥网络的优势,建立大型、高效、共享的题库和实现随时随地的考试,降低考试成本,减少人为干扰,减轻教师负担,节约人力、物力和财力。

代码片段和文件信息
using System;
using System.Data;
using System.Collections;
using System.Data.SqlClient;
using MyOnLineExam.DataAccesslayer;
using MyOnLineExam.DataAccessHelper;
namespace MyOnLineExam.BusinessLogiclayer
{
//考试科目类
public class Course
{
#region 私有成员
private int _ID; //题目编号
private string _Name; //题目
#endregion 私有成员
#region 属性
public int ID
{
set
{
this._ID = value;
}
get
{
return this._ID;
}
}
public string Name
{
set
{
this._Name = value;
}
get
{
return this._Name;
}
}
#endregion 属性
#region 方法
//向Course表中添加考试科目信息
//输出:
// 插入成功:返回True;
// 插入失败:返回False;
public bool InsertByProc()
{
SqlParameter[] Params = new SqlParameter[1];
Database DB = new Database();
Params[0] = DB.MakeInParam(“@Name“ SqlDbType.VarChar 50 Name); //考试科目名称
int Count = -1;
Count = DB.RunProc(“Proc_CourseAdd“ Params);
if (Count > 0)
return true;
else return false;
}
//更新科目的信息
public bool UpdateByProc(int CID)
{
SqlParameter[] Params = new SqlParameter[2];
Database DB = new Database();
Params[0] = DB.MakeInParam(“@ID“ SqlDbType.Int 4 CID); //用户编号
Params[1] = DB.MakeInParam(“@Name“ SqlDbType.VarChar 200 Name); //用户权限
int Count = -1;
Count = DB.RunProc(“Proc_CourseModify“ Params);
if (Count > 0)
return true;
else return false;
}
//删除科目
//输入:
// CID - 科目编号;
//输出:
// 删除成功:返回True;
// 删除失败:返回False;
public bool DeleteByProc(int CID)
{
SqlParameter[] Params = new SqlParameter[1];
Database DB = new Database();
Params[0] = DB.MakeInParam(“@ID“ SqlDbType.Int4 CID); //科目编号
int Count = -1;
Count = DB.RunProc(“Proc_CourseDelete“ Params);
if (Count > 0)
return true;
else return false;
}
//查询所用考试科目
//不需要参数
public DataSet QueryCourse()
{
Database DB = new Database();
return DB.GetDataSet(“Proc_CourseList“);
}
#endregion 方法
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3265 2007-03-05 17:25 在线考试系统.net.net\App_Code\BusinessLogicla
文件 6508 2007-03-05 17:25 在线考试系统.net.net\App_Code\BusinessLogicla
文件 5771 2007-03-05 17:25 在线考试系统.net.net\App_Code\BusinessLogicla
文件 8260 2007-03-05 17:25 在线考试系统.net.net\App_Code\BusinessLogicla
文件 4626 2008-03-31 09:45 在线考试系统.net.net\App_Code\BusinessLogicla
文件 3503 2007-03-05 17:25 在线考试系统.net.net\App_Code\BusinessLogicla
文件 8332 2007-03-05 17:26 在线考试系统.net.net\App_Code\BusinessLogicla
文件 8238 2008-03-31 09:45 在线考试系统.net.net\App_Code\BusinessLogicla
文件 2733 2008-03-31 09:43 在线考试系统.net.net\App_Code\DataAccessHelper\GetSafeData.cs
文件 470 2007-03-05 17:26 在线考试系统.net.net\App_Code\DataAccessHelper\SQLString.cs
文件 9561 2008-03-31 09:44 在线考试系统.net.net\App_Code\DataAccessla
文件 4469 2008-03-31 11:35 在线考试系统.net.net\Controls\admin_left.ascx
文件 427 2007-03-05 17:26 在线考试系统.net.net\Controls\admin_left.ascx.cs
文件 3145728 2008-03-31 11:36 在线考试系统.net.net\DB_51aspx\myOnlineExam.mdf
文件 47362 2008-03-31 11:38 在线考试系统.net.net\DB_51aspx\MyOnLineExam.sql
文件 1048576 2008-03-31 11:36 在线考试系统.net.net\DB_51aspx\myOnlineExam_log.ldf
文件 4945 2007-07-18 09:38 在线考试系统.net.net\from.gif
文件 1238 2007-03-05 17:26 在线考试系统.net.net\Images\Answer.GIF
文件 1244 2007-03-05 17:26 在线考试系统.net.net\Images\Confirm.GIF
文件 1236 2007-03-05 17:26 在线考试系统.net.net\Images\Delete.GIF
文件 1263 2007-03-05 17:26 在线考试系统.net.net\Images\Excel.GIF
文件 4945 2007-07-18 09:38 在线考试系统.net.net\Images\from.gif
文件 1345 2007-03-05 17:26 在线考试系统.net.net\Images\ico_Xp01.gif
文件 1219 2007-03-05 17:26 在线考试系统.net.net\Images\ico_Xp02.gif
文件 1230 2007-03-05 17:26 在线考试系统.net.net\Images\ico_Xp03.gif
文件 1247 2007-03-05 17:26 在线考试系统.net.net\Images\ico_Xp04.gif
文件 1114 2007-03-05 17:26 在线考试系统.net.net\Images\ico_Xp05.gif
文件 1191 2007-03-05 17:26 在线考试系统.net.net\Images\ico_Xp06.gif
文件 1149 2007-03-05 17:26 在线考试系统.net.net\Images\ico_Xp07.gif
文件 1282 2007-03-05 17:26 在线考试系统.net.net\Images\ico_Xp08.gif
............此处省略76个文件信息
- 上一篇:吉大考博人工智能课件
- 下一篇:ckeditor批量上传图片--demo
相关资源
- 在线考试系统VC (MFC)
- 在线考试系统 源代码
- 选择题自动考试系统
- 标准化题库考试系统
- 用友ERP考试系统练习题库及答案
- 局域网在线考试系统V1.0
- 智博考场服务器2.75及mediaclass 3.7全套
- 计算机软件工程 学生考试系统 课程设
- 5微信小程序在线考试系统 开题报告
- 未来教育考试系统(免激活)
- 在线考试系统自己做的
- 在线考试系统(和数据库).rar
- authorware平台的考试系统
- 在线考试系统学生 老师 管理员
- 在线考试系统毕设题目
- 在线考试系统 和文档
- 网上作业提交与发布系统在线考试系
- 在线考试系统SSH 可以自动组卷和考试
- 考试系统网络版(含源码)考试系统
- 在线考试系统三层架构
- 在线考试系统 数据流图 层次图
- 基于ssh在线考试系统
- authorware简单考试系统
- 基于遗传算法的在线考试系统
- 基于SSM架构的在线考试系统设计文档
- 在线考试系统含UML课程设计rational r
- 网上考试系统源代码-学生考试-教师评
- MF000638-C.NET在线考试系统源码.zip
- stm32驾校考试系统源码
- 在线考试系统源码完整版
评论
共有 条评论