-
大小: 1.04MB文件类型: .rar金币: 1下载: 0 次发布日期: 2023-08-30
- 语言: C#
- 标签:
资源简介
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 =
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2581 2007-05-21 13:59 ExamOnline2.0_51aspx\App_Code\51aspx源码必读.txt
文件 12196 2007-05-21 13:56 ExamOnline2.0_51aspx\App_Code\AutoExercise.cs
文件 1170 2007-05-14 00:14 ExamOnline2.0_51aspx\App_Code\Common.cs
文件 17551 2007-05-21 13:56 ExamOnline2.0_51aspx\App_Code\Exam.cs
文件 773 2007-04-08 14:00 ExamOnline2.0_51aspx\App_Code\examEnum.cs
文件 7778 2007-05-20 13:35 ExamOnline2.0_51aspx\App_Code\login.cs
文件 125 2007-03-27 14:33 ExamOnline2.0_51aspx\App_Code\最新Asp.Net源码下载.url
文件 5299 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\CSs\default.css
文件 602 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\html\calendar.html
文件 95 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\html\calendarbottom.html
文件 92 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\html\calendartop.html
文件 2189 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\html\crystalexportdialog.htm
文件 2707 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\html\crystalprinthost.html
文件 84 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\calendar.gif
文件 1410 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\crlogo.gif
文件 617 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\export.gif
文件 283 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\exportd.gif
文件 1244 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\export_over.gif
文件 78 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\First.gif
文件 78 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\Firstd.gif
文件 1251 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\first_over.gif
文件 595 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\gotopage.gif
文件 176 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\gotopaged.gif
文件 1226 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\gotopage_over.gif
文件 257 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\grouptree.gif
文件 230 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\grouptreed.gif
文件 179 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\grouptreepressed.gif
文件 1215 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\grouptree_over.gif
文件 79 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\Last.gif
文件 79 2005-12-08 15:44 ExamOnline2.0_51aspx\aspnet_client\system_web\2_0_50727\CrystalReportWebFormViewer3\Images\ToolBar\Lastd.gif
............此处省略122个文件信息
- 上一篇:KeyBoardMaster 源码
- 下一篇:商业化C#报表设计器源代码
评论
共有 条评论