资源简介
在线考试系统源码、毕业设计论文,完整版、计算机科学与技术、ASP、.NET
代码片段和文件信息
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.IO;
namespace ExamOnline
{
//该源码下载自www.51aspx.com(51aspx.com)
///
/// AutoExercise 的摘要说明:在线练习--自动组卷的功能实现
///
public class AutoExercise
{
string strcon = ““; //连接字符串
///
/// 构造函数,连接字符串
///
public AutoExercise()
{
if (strcon == ““)
{
if (HttpContext.Current.Application[“strcon“] == null)
{
string path = HttpContext.Current.Request.PhysicalApplicationPath + “DBSet.ini“;//获取文件物理路径
StreamReader sr = new StreamReader(path System.Text.Encoding.Default);
strcon = sr.ReadLine();//读取文件内容
HttpContext.Current.Application[“strcon“] = strcon;
}
else
{
strcon = HttpContext.Current.Application[“strcon“].ToString();
}
}
}
///
/// 用SQL语句绑定GridView
///
/// 要绑定的GridView
/// SQL语句
public void bindGV(GridView gv string strcmd)
{
SqlDataSource sqlds = new SqlDataSource();
sqlds.ConnectionString = strcon;
sqlds.SelectCommandType = SqlDataSourceCommandType.Text;
sqlds.SelectCommand = strcmd;
gv.DataSource = sqlds;
gv.DataBind();
}
///
/// 取得一门课程某题型难度的最大值
///
///
///
///
public int getQlevel(string cid int sid)
{
SqlConnection con = new SqlConnection(strcon);
string strcmd = “select max(qlevel) from questions where cid=‘“ + cid + “‘ and sid=‘“ + sid + “‘“;
SqlCommand cmd = new SqlCommand(strcmd con);
con.Open();
int heighLevel =Convert.ToInt32(cmd.ExecuteScalar());
con.Close();
return heighLevel;
}
///
/// 取得一门课程某题型的总题量
///
///
///
///
public int getQNum(string cid int sid)
{
SqlConnection con = new SqlConnection(strcon);
string strcmd = “select count(*) from questions where cid=‘“ + cid + “‘ and sid=‘“ + sid + “‘“;
SqlCommand cmd = new SqlCommand(strcmd con);
con.Open();
int qNum =
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2007-05-21 14:00 App_Code\
文件 2581 2007-05-21 13:59 App_Code\51aspx源码必读.txt
文件 12196 2007-05-21 13:56 App_Code\AutoExercise.cs
文件 1170 2007-05-14 00:14 App_Code\Common.cs
文件 17551 2007-05-21 13:56 App_Code\Exam.cs
文件 773 2007-04-08 14:00 App_Code\examEnum.cs
文件 7778 2007-05-20 13:35 App_Code\login.cs
文件 125 2007-03-27 14:33 App_Code\最新Asp.Net源码下载.url
目录 0 2007-05-21 12:52 App_Data\
目录 0 2007-05-21 13:42 Bin\
文件 699176 2007-03-28 17:18 Bin\System.Web.Extensions.DLL
目录 0 2007-05-21 12:54 DB_51aspx\
文件 1310720 2007-05-21 13:59 DB_51aspx\ExamOnline_Data.MDF
文件 1835008 2007-05-21 13:59 DB_51aspx\ExamOnline_Log.LDF
文件 85 2007-05-21 12:56 DBSet.ini
文件 1484 2007-05-09 13:01 ExamOnline.sln
目录 0 2007-05-21 12:52 Images\
文件 6467 2006-12-06 08:05 Images\loader.gif
目录 0 2007-05-21 12:52 JS\
文件 1714 2007-05-05 12:06 JS\antiCommon.js
目录 0 2007-05-21 14:00 Students\
文件 2581 2007-05-21 13:59 Students\51aspx源码必读.txt
文件 4781 2007-05-16 21:28 Students\autoexercise.aspx
文件 7353 2007-05-15 00:09 Students\autoexercise.aspx.cs
文件 2135 2007-05-16 22:11 Students\autopage.aspx
文件 7410 2007-05-17 19:58 Students\autopage.aspx.cs
文件 580 2007-04-28 14:19 Students\end.htm
文件 1333 2007-04-28 14:29 Students\examlogin.aspx
文件 715 2007-05-09 13:02 Students\examlogin.aspx.cs
文件 2681 2007-04-28 14:25 Students\examonline.aspx
文件 13442 2007-04-29 11:16 Students\examonline.aspx.cs
............此处省略30个文件信息
- 上一篇:c#版的模拟文件系统
- 下一篇:C#图像处理源程序
相关资源
- asp.net C# 在线考试系统制作视频教程
- ASP.NET 在线考试系统
- 基于C#WinForm数据库在线考试系统项目
- 基于ASP.NET SQL2008的在线考试系统源代
- Asp.net在线考试系统源码
- 用asp.net做的在线考试系统
- C#版asp.net在线考试系统(可用作课程
- 通用在线考试系统
- asp.net中用C#写的在线考试系统
- ASP.NET+SQL在线考试系统(毕业设计)
- 最新ASP.NET在线考试系统源码附论文
- C#作业在线考试系统代码及数据库
- 在线考试系统-详细设计说明书
- 在线考试系统B/S[C#]
- C#在线考试系统软件版
- 在线考试系统源码(Asp.net)
- c#在线考试系统(全部源码加说明)
- c#在线考试系统
- asp.net在线考试系统毕业设计源码
- ASP.net在线考试系统
- C#编写在线考试系统生成试卷、管理、
- asp.net三层架构在线考试系统含数据库
- 在线考试系统C# 源代码
- 在线考试系统asp.net+sql
- C#在线考试系统代码
- 多功能在线考试系统改进版源码(毕
- Asp.net+sql server在线考试系统
- 北大青鸟在线考试系统
- C# 在线考试系统(含数据库)
- 赞asp.net在线考试系统源码(附数据库
评论
共有 条评论