master
editor 1 year ago
commit bd7ddb087d

@ -0,0 +1,87 @@
多功能在线学习考试系统网站源码
一、源码描述
    这是多功能在线学习考试系统网站源码的升级版本,这次主要修正了错误,修改了部分逻辑,添加了点页面,
    基本实用化,界面十分美观,可以作为学校、企业学习考试使用,感兴趣的朋友可以下载看看哦。
二、功能介绍
    1、个人信息修改修改密码。
    2、部门信息管理部门管理。
    3、用户信息管理用户管理、权限设置。
    4、试卷制定维护试卷制定(随机出题、自由出题)、试卷维护、试卷状态动态编辑(考试、练习)。
    5、用户试卷管理试卷评阅、用户成绩。
    6、试卷类别管理单选题维护、多选题维护、判断题维护、填空题维护、问答题。
    7、试卷后台自动添加答案序号避免前台录入的麻烦。
    8、练习试卷和考试试卷分组显示不同试卷状态只能在不同类目下进行。
    9、练习状态的试卷可以提交无限次考试状态的试卷只能提交一次。
    10、每个试卷都可以设置单独的考试时间考试界面显示倒计时且自动交卷。
    11、练习状态的试卷考试完成后即可显示分数及参考答案考试状态的试卷需要教师审阅后方可进行分数查看。
    12、其它功能的优化及完善。
三、注意事项
    1、后台管理员用户名密码均是:admin.
    2、开发环境为Visual Studio 2012数据库为SQL Server 2005数据库文件在DB文件夹中
    使用.net 2.0开发。
    3、默认数据库连接字符串在webconfig配置文件中修改。   
作者: LiCHuanCHeng
如需获得该源码的视频、更新等更多资料请访问: https://www.51aspx.com/Code/MultifunctionalOnlineLearningExaminationSystemSite
------------------------------------------------------------------------------------------------
源码服务专家
官网: https://www.51aspx.com
讨论圈: https://club.51aspx.com/
平台声明:
1.51Aspx平台上提供下载的资源为免费、共享、商业三类源码,其中免费和共享源码仅供个人学习和研究使用,商业源码请在相应的授权许可条件下使用;
2.51Aspx平台对提供下载的软件及其它资源不拥有任何权利,其版权归属源码合法拥有者所有;
3.著作权人发现本网站载有侵害其合法权益的内容或作品,请与我们联系( 登录官网与客服反馈或发送邮件到support@51Aspx.com
4.51Aspx平台不保证提供的下载资源的准确性、安全性和完整性;
友情提示:
一般数据库文件默认在 DB_51Aspx 文件夹下
默认账号密码一般均为51Aspx
关于源码使用常见问题及解决方案,请参阅: https://www.51aspx.com/Help

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Collections;
using System.Data.SqlClient;
using OnLineExam.DataAccessLayer;
using OnLineExam.DataAccessHelper;
namespace OnLineExam.BusinessLogicLayer
{
//考试科目类
public class Course
{
#region 私有成员
private int _ID; //题目编号

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Collections;
using System.Data.SqlClient;
using OnLineExam.DataAccessLayer;
using OnLineExam.DataAccessHelper;
namespace OnLineExam.BusinessLogicLayer
{
public class Department
{
#region ˽<>г<EFBFBD>Ա
private int _departmentId; //<2F><><EFBFBD><EFBFBD>ID

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Collections;
using System.Data.SqlClient;
using OnLineExam.DataAccessLayer;
using OnLineExam.DataAccessHelper;
namespace OnLineExam.BusinessLogicLayer
{
//填空题类
public class FillBlankProblem
{
#region 私有成员
private int _ID; //题目编号

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Collections;
using System.Data.SqlClient;
using OnLineExam.DataAccessLayer;
using OnLineExam.DataAccessHelper;
namespace OnLineExam.BusinessLogicLayer
{
//判断题类
public class JudgeProblem
{
#region 私有成员
private int _ID; //题目编号

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Collections;
using System.Data.SqlClient;
using OnLineExam.DataAccessLayer;
using OnLineExam.DataAccessHelper;
namespace OnLineExam.BusinessLogicLayer
{
//多选题类
public class MultiProblem
{
#region 私有成员
private int _ID; //题目编号

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Collections;
using System.Data.SqlClient;
using OnLineExam.DataAccessLayer;
using OnLineExam.DataAccessHelper;
namespace OnLineExam.BusinessLogicLayer
{
//用户类
public class Paper
{
#region 私有成员
private int _paperID; //试卷编号

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Collections;
using System.Data.SqlClient;
using OnLineExam.DataAccessLayer;
using OnLineExam.DataAccessHelper;
namespace OnLineExam.BusinessLogicLayer
{
//<2F>ʴ<EFBFBD><CAB4><EFBFBD>
public class QuestionProblem
{
#region ˽<>г<EFBFBD>Ա
private int _ID; //<2F><>Ŀ<EFBFBD><C4BF><EFBFBD>
private int _CourseID; //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀ

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Collections;
using System.Data.SqlClient;
using OnLineExam.DataAccessLayer;
using OnLineExam.DataAccessHelper;
namespace OnLineExam.BusinessLogicLayer
{
/// <summary>
/// Role <20><>ժҪ˵<D2AA><CBB5><EFBFBD><EFBFBD>
/// </summary>
public class Role
{
#region ˽<>г<EFBFBD>Ա

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Collections;
using System.Data.SqlClient;
using OnLineExam.DataAccessLayer;
using OnLineExam.DataAccessHelper;
namespace OnLineExam.BusinessLogicLayer
{
//用户类
public class Scores
{
#region 私有成员
private int _ID;

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Collections;
using System.Data.SqlClient;
using OnLineExam.DataAccessLayer;
using OnLineExam.DataAccessHelper;
namespace OnLineExam.BusinessLogicLayer
{
//单选题类
public class SingleProblem
{
#region 私有成员
private int _ID; //题目编号

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Collections;
using System.Data.SqlClient;
using OnLineExam.DataAccessLayer;
using OnLineExam.DataAccessHelper;
namespace OnLineExam.BusinessLogicLayer
{
//用户类
public class Users
{
#region 私有成员
private string _userID; //用户编号
private string _userPwd; //用户密码

@ -0,0 +1,15 @@
using System;
using System.Data;
using OnLineExam.DataAccessLayer;
namespace OnLineExam.CommonComponent
{
/// <summary>
/// һ<><D2BB>ͨ<EFBFBD>õ<EFBFBD><C3B5><EFBFBD>״<EFBFBD>˵<EFBFBD><CBB5><EFBFBD>
/// </summary>
public class Tree
{
private string _treeHtml;
private DataTable _dataTable;
private string _title = "";

@ -0,0 +1,15 @@
using System;
using System.Data;
namespace OnLineExam.DataAccessHelper
{
/// <summary>
/// <20><><EFBFBD><EFBFBD><EFBFBD>ݿ<EFBFBD><DDBF>а<EFBFBD>ȫ<EFBFBD><C8AB>ȡ<EFBFBD><C8A1><EFBFBD>ݣ<EFBFBD><DDA3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݿ<EFBFBD><DDBF>е<EFBFBD><D0B5><EFBFBD><EFBFBD><EFBFBD>ΪNULLʱ<4C><CAB1><EFBFBD><EFBFBD>֤<EFBFBD><D6A4>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><ECB3A3>
/// </summary>
public class GetSafeData
{
#region DataRow
/// <summary>
/// <20><>һ<EFBFBD><D2BB>DataRow<6F>У<EFBFBD><D0A3><EFBFBD>ȫ<EFBFBD>õ<EFBFBD><C3B5><EFBFBD>colname<6D>е<EFBFBD>ֵ<EFBFBD><D6B5>ֵΪ<D6B5>ַ<EFBFBD><D6B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
/// </summary>

@ -0,0 +1,15 @@
using System;
using System.Collections;
namespace OnLineExam.DataAccessHelper
{
//<2F>Դ<EFBFBD><D4B4>ݹ<EFBFBD><DDB9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ<EFBFBD><D6B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD>д<EFBFBD><D0B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
public class SQLString
{
//<2F><><EFBFBD>о<EFBFBD>̬<EFBFBD><CCAC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>SQL<51>ַ<EFBFBD><D6B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(')ת<><D7AA><EFBFBD><EFBFBD>('')
public static String GetSafeSqlString(String XStr)
{
return XStr.Replace("'","''");
}
//<2F><><EFBFBD>о<EFBFBD>̬<EFBFBD><CCAC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>SQL<51>ַ<EFBFBD><D6B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(')ת<><D7AA><EFBFBD><EFBFBD>('')<29><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ<EFBFBD><D6B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>߼<EFBFBD><DFBC><EFBFBD>(')

@ -0,0 +1,15 @@
using System;
using System.ComponentModel;
using System.Collections;
using System.Diagnostics;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using OnLineExam.DataAccessHelper;
using OnLineExam.CommonComponent;
namespace OnLineExam.DataAccessLayer
{
// <20><><EFBFBD>ݿ<EFBFBD>ӿ<EFBFBD><D3BF><EFBFBD>

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using OnLineExam.BusinessLogicLayer;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
RedirectPage();
}
private void RedirectPage()
{

@ -0,0 +1,15 @@
*{
-webkit-touch-callout:none; /*系统默认菜单被禁用*/
-webkit-user-select:none; /*webkit浏览器*/
-khtml-user-select:none; /*早期浏览器*/
-moz-user-select:none;/*火狐*/
-ms-user-select:none; /*IE10*/
user-select:none;
}
input {
-webkit-user-select:auto; /*webkit浏览器*/
}
textarea {
-webkit-user-select:auto; /*webkit浏览器*/
}

@ -0,0 +1,15 @@
#pagelist {
width:97%;
font-size:13px;
display:inline;
list-style-type:square;
margin:0px;
padding:0px;
}
#pagelist li {
width:97%;
height:22px;
margin-left:15px;
padding-top:0px;
border-bottom: dotted 1px #999999;
}

@ -0,0 +1,15 @@
html,body {
margin:0;
height:100%;
}
#test {
width:100%;
height:100%;
background-color:#000;
position:absolute;
top:0;
left:0;
z-index:2;
opacity:0.3;
/*兼容IE8及以下版本浏览器*/
filter: alpha(opacity=30);

@ -0,0 +1,15 @@
*{
padding:0px; margin:0px;
list-style-type:none;
}
a, img {
border:0;
}
body,html{
font-size:14px;
font-family: "微软雅黑", "宋体", Arial, Verdana;
}

@ -0,0 +1,3 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="lefttree.ascx.cs" Inherits="Controls_lefttree" %>
<asp:Literal ID="LabelTree" runat="server"></asp:Literal>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.DataAccessLayer;
using OnLineExam.DataAccessHelper;
using OnLineExam.BusinessLogicLayer;
using OnLineExam.CommonComponent;

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="CourseAdd.aspx.cs" Inherits="Web_CourseAdd" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="top" align="left" width="960px">
<table cellpadding="0" cellspacing="0" border="1" bordercolor="#cccccc" style="border-collapse:collapse" width="100%" frame="below">
<tr>
<td bgcolor="#eeeeee" style="text-align:right;width:100%;" colspan="2"> <div class="title" align="left"><h4>
<20><><EFBFBD>ӿ<EFBFBD><D3BF>Կ<EFBFBD>Ŀ</h4></div></td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;"><3E><>Ŀ<EFBFBD><C4BF><EFBFBD>ƣ<EFBFBD></td>
<td >&nbsp;<div align="left"><asp:TextBox id="txtName" runat="server" MaxLength="20" Width="128px"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtName" ErrorMessage="<22><><EFBFBD><EFBFBD>Ϊ<EFBFBD>գ<EFBFBD>"></asp:RequiredFieldValidator></div>
</td>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_CourseAdd : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="CourseManage.aspx.cs" Inherits="Web_CourseManage" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="top" align="left">
<h4><3E><><EFBFBD>Կ<EFBFBD>Ŀ<EFBFBD><C4BF><EFBFBD><EFBFBD></h4>
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" AllowPaging="True" OnPageIndexChanging="GridView1_PageIndexChanging" PageSize="12" OnRowDataBound="GridView1_RowDataBound"<22><>Width="541px" DataKeyNames="ID"
OnRowCancelingEdit="GridView1_RowCancelingEdit" OnRowDeleting="GridView1_RowDeleting" OnRowEditing="GridView1_RowEditing" OnRowUpdating="GridView1_RowUpdating" CssClass="GridStyle" >
<Columns>
<asp:TemplateField HeaderText="<22><><EFBFBD>">
<ItemTemplate>
<asp:Label ID="Label1" runat="server"><%# Eval("ID") %></asp:Label>
</ItemTemplate>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_CourseManage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,11 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/Exam/MasterPage.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Exam_Default" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<div id="test"></div>
<div id="log_window" class="warn">
<div class="title">考核通报</div>
<div class="content">甲班不及格人员:暂无;乙班不及格人员:张亮(安全)、赵文军(安全)、张纪军(业务、安全);丙班不及格人员:王进鑫(业务)、曹尚泽(安全);丁班不及格人员:李占驭(业务)。【<a href="NoticeCj.aspx"><font color="red">详细...</font></a>】</div>
<div class="i_know"><a href="javascript:cancel_shield()"><font color="#4691ee">我知道了</font></a></div>
</div>
</asp:Content>

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Exam_Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DepartmentAdd.aspx.cs" Inherits="Web_DepartmentAdd" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table cellpadding="0" cellspacing="0" border="1" bordercolor="#cccccc" style="border-collapse:collapse" width="100%" frame="below">
<tr>
<td bgcolor="#eeeeee" style="text-align:right;width:100%;" colspan="2"> <div class="title" align="left"><h4>
<20><><EFBFBD>Ӳ<EFBFBD><D3B2><EFBFBD></h4></div></td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;"><3E><><EFBFBD>ű<EFBFBD>ţ<EFBFBD></td>
<td >&nbsp;<div align="left"><asp:TextBox id="txtDepartmentId" runat="server" MaxLength="20" style="left: 2px; position: relative; top: 0px"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtDepartmentId" ErrorMessage="<22><><EFBFBD><EFBFBD>Ϊ<EFBFBD>գ<EFBFBD>"></asp:RequiredFieldValidator></div>
</td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>֣<EFBFBD></td>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
using System.Data.SqlClient;
public partial class Web_DepartmentAdd : System.Web.UI.Page
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="DepartmentManage.aspx.cs" Inherits="Web_DepartmentManage" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="top" align="left">
<h4><3E><><EFBFBD>Ź<EFBFBD><C5B9><EFBFBD></h4>
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" AllowPaging="True" OnPageIndexChanging="GridView1_PageIndexChanging" PageSize="12" OnRowDataBound="GridView1_RowDataBound" OnRowCancelingEdit="GridView1_RowCancelingEdit" OnRowDeleting="GridView1_RowDeleting" OnRowEditing="GridView1_RowEditing" OnRowUpdating="GridView1_RowUpdating" DataKeyNames="DepartmentId" Width="541px" CssClass="GridStyle">
<Columns>
<asp:TemplateField HeaderText="<22><><EFBFBD>">
<ItemTemplate>
<asp:Label ID="Label1" runat="server"><%# Eval("DepartmentId") %></asp:Label>
</ItemTemplate>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
using System.Data.SqlClient;
public partial class Web_DepartmentManage : System.Web.UI.Page
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="FillBlankAdd.aspx.cs" Inherits="Web_FillBlankAdd" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table cellpadding="0" cellspacing="0" border="1" bordercolor="#cccccc" style="border-collapse:collapse" width="100%" frame="below">
<tr>
<td bgcolor="#eeeeee" colspan="2"> <div class="title" align="left"><h4><3E><><EFBFBD><EFBFBD><EFBFBD></h4></div></td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;" width="80px"><3E><>Ŀ<EFBFBD><C4BF></td>
<td >&nbsp;<div align="left"><asp:dropdownlist id="ddlCourse" runat="server" Font-Size="9pt" Width="88px"></asp:dropdownlist></div>
</td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;"> ǰ<><C7B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD></td>
<td >&nbsp;<div align="left"><asp:textbox id="txtFrontTitle" runat="server" Width="100%" TextMode="MultiLine"

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_FillBlankAdd : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="FillBlankManage.aspx.cs" Inherits="Web_FillBlankManage" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="top" align="left" width="960px">
<h4><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></h4>
<div class="BoxSearchBar"><asp:DropDownList ID="ddlCourse" runat="server" AutoPostBack="True" Width="130px" OnSelectedIndexChanged="ddlCourse_SelectedIndexChanged"></asp:DropDownList></div>
<asp:GridView ID="GridView1" runat="server" Width="100%" AutoGenerateColumns="False" AllowPaging="True" OnPageIndexChanging="GridView1_PageIndexChanging" PageSize="12" OnRowDataBound="GridView1_RowDataBound" DataKeyNames="ID" CssClass="GridStyle" OnRowDeleting="GridView1_RowDeleting">
<Columns>
<asp:TemplateField HeaderText="<22><><EFBFBD>" Visible=false>
<ItemTemplate>
<asp:Label ID="Label1" runat="server"><%# Eval("ID") %></asp:Label>
</ItemTemplate>
</asp:TemplateField>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_FillBlankManage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
//jquery.1.4.2-min.js
(function(p,j){function u(){if(!c.isReady){try{v.documentElement.doScroll("left")}catch(a){setTimeout(u,1);return}c.ready()}}function t(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function o(a,b,e,g,f,l){var k=a.length;if(typeof b==="object"){for(var s in b)o(a,s,b[s],g,f,e);return a}if(e!==j){g=!l&&g&&c.isFunction(e);for(s=0;s<k;s++)f(a[s],b,g?e.call(a[s],s,f(a[s],b)):e,l);return a}return k?
f(a[0],b):j}function z(){return(new Date).getTime()}function G(){return false}function U(){return true}function R(a,b,e){e[0].type=a;return c.event.handle.apply(b,e)}function S(a){var b,e=[],g=[],f=arguments,l,k,s,m,r,y;k=c.data(this,"events");if(!(a.liveFired===this||!k||!k.live||a.button&&a.type==="click")){a.liveFired=this;var B=k.live.slice(0);for(m=0;m<B.length;m++){k=B[m];k.origType.replace(da,"")===a.type?g.push(k.selector):B.splice(m--,1)}l=c(a.target).closest(g,a.currentTarget);r=0;for(y=
l.length;r<y;r++)for(m=0;m<B.length;m++){k=B[m];if(l[r].selector===k.selector){s=l[r].elem;g=null;if(k.preType==="mouseenter"||k.preType==="mouseleave")g=c(a.relatedTarget).closest(k.selector)[0];if(!g||g!==s)e.push({elem:s,handleObj:k})}}r=0;for(y=e.length;r<y;r++){l=e[r];a.currentTarget=l.elem;a.data=l.handleObj.data;a.handleObj=l.handleObj;if(l.handleObj.origHandler.apply(l.elem,f)===false){b=false;break}}return b}}function L(a,b){return"live."+(a&&a!=="*"?a+".":"")+b.replace(/\./g,"`").replace(/ /g,
"&")}function Z(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function ea(a,b){var e=0;b.each(function(){if(this.nodeName===(a[e]&&a[e].nodeName)){var g=c.data(a[e++]),f=c.data(this,g);if(g=g&&g.events){delete f.handle;f.events={};for(var l in g)for(var k in g[l])c.event.add(this,l,g[l][k],g[l][k].data)}}})}function fa(a,b,e){var g,f,l;b=b&&b[0]?b[0].ownerDocument||b[0]:v;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===v&&!Ca.test(a[0])&&(c.support.checkClone||!Da.test(a[0]))){f=
true;if(l=c.fragments[a[0]])if(l!==1)g=l}if(!g){g=b.createDocumentFragment();c.clean(a,b,g,e)}if(f)c.fragments[a[0]]=l?g:1;return{fragment:g,cacheable:f}}function T(a,b){var e={};c.each(Ea.concat.apply([],Ea.slice(0,b)),function(){e[this]=a});return e}function V(a){return"scrollTo"in a&&a.document?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var c=function(a,b){return new c.fn.init(a,b)},oa=p.jQuery,J=p.$,v=p.document,N,K=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,M=/^.[^:#\[\.,]*$/,ka=/\S/,$=
/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Ya=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,ga=navigator.userAgent,Fa=false,ha=[],aa,pa=Object.prototype.toString,qa=Object.prototype.hasOwnProperty,ra=Array.prototype.push,ia=Array.prototype.slice,Ga=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var e,g;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=v;this[0]=v.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((e=K.exec(a))&&
(e[1]||!b))if(e[1]){g=b?b.ownerDocument||b:v;if(a=Ya.exec(a))if(c.isPlainObject(b)){a=[v.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[g.createElement(a[1])];else{a=fa([e[1]],[g]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=v.getElementById(e[2])){if(b.id!==e[2])return N.find(a);this.length=1;this[0]=b}this.context=v;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=v;a=v.getElementsByTagName(a);return c.merge(this,
a)}else return!b||b.jquery?(b||N).find(a):c(b).find(a);else if(c.isFunction(a))return N.ready(a);if(a.selector!==j){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return ia.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,e){var g=c();c.isArray(a)?ra.apply(g,a):c.merge(g,a);g.prevObject=this;g.context=this.context;if(b===
"find")g.selector=this.selector+(this.selector?" ":"")+e;else if(b)g.selector=this.selector+"."+b+"("+e+")";return g},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(v,c);else ha&&ha.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(ia.apply(this,arguments),"slice",ia.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this,
function(b,e){return a.call(b,e,b)}))},end:function(){return this.prevObject||c(null)},push:ra,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,e=arguments.length,g=false,f,l,k,s;if(typeof a==="boolean"){g=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(e===b){a=this;--b}for(;b<e;b++)if((f=arguments[b])!=null)for(l in f){k=a[l];s=f[l];if(a!==s)if(g&&s&&(c.isPlainObject(s)||c.isArray(s))){k=k&&(c.isPlainObject(k)||
c.isArray(k))?k:c.isArray(s)?[]:{};a[l]=c.extend(g,k,s)}else if(s!==j)a[l]=s}return a};c.extend({noConflict:function(a){p.$=J;if(a)p.jQuery=oa;return c},isReady:false,ready:function(){if(!c.isReady){if(!v.body)return setTimeout(c.ready,13);c.isReady=true;if(ha){for(var a,b=0;a=ha[b++];)a.call(v,c);ha=null}c.fn.triggerHandler&&c(v).triggerHandler("ready")}},bindReady:function(){if(!Fa){Fa=true;if(v.readyState==="complete")return c.ready();if(v.addEventListener){v.addEventListener("DOMContentLoaded",
aa,false);p.addEventListener("load",c.ready,false)}else if(v.attachEvent){v.attachEvent("onreadystatechange",aa);p.attachEvent("onload",c.ready);var a=false;try{a=p.frameElement==null}catch(b){}v.documentElement.doScroll&&a&&u()}}},isFunction:function(a){return pa.call(a)==="[object Function]"},isArray:function(a){return pa.call(a)==="[object Array]"},isPlainObject:function(a){if(!a||pa.call(a)!=="[object Object]"||a.nodeType||a.setInterval)return false;if(a.constructor&&!qa.call(a,"constructor")&&

@ -0,0 +1,13 @@
function myFunction() {
var id = event.srcElement.id;
document.getElementById(id).value="";
document.all.imgBtnScore.click();
}
var zhText = "考试期间不得离开当前考试页面,查阅及粘贴答案系统将视为作弊。";
let utterThis = new window.SpeechSynthesisUtterance();
utterThis.text= zhText;
window.speechSynthesis.speak(utterThis);
// window 失去焦点,停止输出
window.onblur = function() {
document.all.Button1.click();
}

@ -0,0 +1,15 @@
var timer = document.getElementById("hfdZC").value; //在这里设定考试时间,单位为秒。
var startTime, timeOver
function checkTime() {
var timeNow = new Date();
var remnantTime = timeOver.getTime() - timeNow.getTime();
if (remnantTime < 1) {
alert("时间到了,点击确定交卷。");
document.all.imgBtnSubmit.click();
}
else {
var msg = "";
var date1 = new Date();
date1.setTime(remnantTime);
msg = (date1.getTime() % 60000 == 0) ? (Math.ceil(date1.getTime() / (60000)) + "分") : (Math.ceil(date1.getTime() / (60000)) - 1 + "分");
msg += date1.getSeconds() + "秒";

@ -0,0 +1,15 @@
$(document).ready(function(){
function unfoldMenu(pn, cn){
var p = $('strong.menu-p'), c = $('div.menu-c'), cc = $('div.menu-c-current');
if(c.index(cn) != c.index(cc)){
p.removeClass('menu-p-current');
cc.hide(200, function(){
$(this).removeAttr('style').removeClass('menu-c-current');
})
pn.addClass('menu-p-current');
cn.show(200, function(){
$(this).removeAttr('style').addClass('menu-c-current');
});
}
}

@ -0,0 +1,15 @@
@charset "utf-8";
/* service-menu */
.service-menu .menu-title, .service-menu .menu-p, .service-menu .menu-p .menu-i {
background:url("menubg.png") no-repeat;
}
.service-menu {
border:solid 1px #d1d1d1;
width:200px;
margin:1px auto 10px auto;
border-left: none;
}
.service-menu .menu-title {
height:21px;
overflow:hidden;
padding:6px 8px;

@ -0,0 +1,15 @@
function shield(){
var s = document.getElementById("test");
s.style.display = "block";
var l = document.getElementById("log_window");
l.style.display = "block";
}
function cancel_shield(){
var s = document.getElementById("test");
s.style.display = "none";
var l = document.getElementById("log_window");
l.style.display = "none";
}

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="JudgeAdd.aspx.cs" Inherits="Web_JudgeAdd" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table cellpadding="0" cellspacing="0" border="1" bordercolor="#cccccc" style="border-collapse:collapse" width="100%" >
<tr>
<td bgcolor="#eeeeee" colspan="2"> <div class="title" align="left"><h4>
<20>ж<EFBFBD><D0B6><EFBFBD></h4></div></td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;" width="80px"><3E><>Ŀ<EFBFBD><C4BF></td>
<td >&nbsp;<div align="left"><asp:dropdownlist id="ddlCourse" runat="server" Font-Size="9pt" Width="88px"></asp:dropdownlist></div>
</td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;"><3E><>Ŀ<EFBFBD><C4BF></td>
<td >&nbsp;<div align="left"><asp:textbox id="txtTitle" runat="server" Width="100%" TextMode="MultiLine" Height="60px"></asp:textbox>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_JudgeAdd : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="JudgeManage.aspx.cs" Inherits="Web_JudgeManage" MasterPageFile="~/Exam/MasterPage.master"%>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="top" align="left" >
<h4><3E>ж<EFBFBD><D0B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD></h4>
<div class="BoxSearchBar"><asp:DropDownList ID="ddlCourse" runat="server" AutoPostBack="True" Width="130px" OnSelectedIndexChanged="ddlCourse_SelectedIndexChanged"></asp:DropDownList></div>
<asp:GridView ID="GridView1" runat="server" Width="100%" AutoGenerateColumns="False" AllowPaging="True" OnPageIndexChanging="GridView1_PageIndexChanging" PageSize="12" OnRowDataBound="GridView1_RowDataBound" DataKeyNames="ID" CssClass="GridStyle" OnRowDeleting="GridView1_RowDeleting">
<Columns>
<asp:TemplateField HeaderText="<22><><EFBFBD>" Visible=false>
<ItemTemplate>
<asp:Label ID="Label1" runat="server"><%# Eval("ID") %></asp:Label>
</ItemTemplate>
</asp:TemplateField>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_JudgeManage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="Exam_MasterPage" %>
<%@ Register Src="~/exam/Controls/lefttree.ascx" TagName="lefttree" TagPrefix="uc1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>金昌兰石在线考试系统</title>
<link rel="icon" href="css/favicon.ico" type="image/x-icon" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/popup.css" rel="stylesheet" type="text/css" />
<link href="css/notice.css" rel="stylesheet" type="text/css" />
<link href="JS/menu/menu.css" rel="stylesheet" />
<script src="JS/jquery.1.4.2-min.js"></script>
<script src="JS/popup.js"></script>
<script src="JS/menu/jquery.menu.js"></script>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using OnLineExam.BusinessLogicLayer;
public partial class Exam_MasterPage : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
if (Session["userID"] == null)
{
Response.Write("<script language=javascript>location='Login.aspx'</script>");
Response.End();

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="MultiSelectAdd.aspx.cs" Inherits="Web_MultiSelectAdd" MasterPageFile="~/Exam/MasterPage.master"%>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table cellpadding="0" cellspacing="0" border="1" bordercolor="#cccccc" style="border-collapse:collapse" width="100%" frame="below">
<tr>
<td bgcolor="#eeeeee" colspan="2"> <div class="title" align="left"><h4><3E><>ѡ<EFBFBD><D1A1></h4></div></td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;" width="80px"><3E><>Ŀ<EFBFBD><C4BF></td>
<td >&nbsp;<div align="left"><asp:dropdownlist id="ddlCourse" runat="server" Font-Size="9pt" Width="88px"></asp:dropdownlist></div>
</td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;"><3E><>Ŀ<EFBFBD><C4BF></td>
<td >&nbsp;<div align="left"><asp:textbox id="txtTitle" runat="server" Width="100%" TextMode="MultiLine"<22><>Height="50px"></asp:textbox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="txtTitle"

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_MultiSelectAdd : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="MultiSelectManage.aspx.cs" Inherits="Web_MultiSelectManage" MasterPageFile="~/Exam/MasterPage.master"%>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="top" align="left" >
<h4><3E><>ѡ<EFBFBD><D1A1><EFBFBD><EFBFBD><EFBFBD></h4>
<div class="BoxSearchBar"><asp:DropDownList ID="ddlCourse" runat="server" AutoPostBack="True" Width="130px" OnSelectedIndexChanged="ddlCourse_SelectedIndexChanged"></asp:DropDownList></div>
<asp:GridView ID="GridView1" runat="server" Width="100%" AutoGenerateColumns="False" AllowPaging="True" OnPageIndexChanging="GridView1_PageIndexChanging" PageSize="12" OnRowDataBound="GridView1_RowDataBound" DataKeyNames="ID" CssClass="GridStyle" OnRowDeleting="GridView1_RowDeleting">
<Columns>
<asp:TemplateField HeaderText="<22><><EFBFBD>" Visible=false>
<ItemTemplate>
<asp:Label ID="Label1" runat="server"><%# Eval("ID") %></asp:Label>
</ItemTemplate>
</asp:TemplateField>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_MultiSelectManage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,10 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="NoticeCj.aspx.cs" Inherits="Web_NoticeCj" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<h1 style="text-align:center;font-size:24px;font-family:"΢<><CEA2><EFBFBD>ź<EFBFBD>";color:#333;"><3E><><EFBFBD><EFBFBD><EFBFBD>ʯ<EFBFBD><CAAF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѵ<EFBFBD><D1B5><EFBFBD>Գɼ<D4B3>(2<><32>/6<><36>)</h1>
<div style="text-align: center;font-size: 12px;color: #888888;"></div>
<hr style="border: 0;border-bottom: 1px solid black;"/>
<div style="margin-top:5px;">
<p style="text-align:left;color:#000;text-indent: 2em;">ͣ<><CDA3><EFBFBD>ڼ<EFBFBD>ÿλԱ<CEBB><D4B1><EFBFBD><EFBFBD><EFBFBD>ϸ<EFBFBD><CFB8><EFBFBD><EFBFBD>س<EFBFBD><D8B3><EFBFBD>ѧϰ<D1A7><CFB0>ѵ<EFBFBD><D1B5><EFBFBD><EFBFBD><EFBFBD>ƶȣ<C6B6>ÿһ<C3BF>ܸ<EFBFBD><DCB8><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD>ζ<EFBFBD>Ӧ<EFBFBD>ܴε<DCB4>ҵ<EFBFBD>񼰰<EFBFBD>ȫ<EFBFBD><C8AB><EFBFBD>ԡ<EFBFBD>ÿ<EFBFBD>ܵĿ<DCB5><C4BF>Գɼ<D4B3><C9BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB><EFBFBD>й<EFBFBD>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E9A1A2><EFBFBD>˼<EFBFBD>Ч<EFBFBD><D0A7><EFBFBD>˼<EFBFBD><CBBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></p>
</div>
<div style="text-align:center;margin-top:2px;"><img src="css/Score.jpg" alt="" width="100%" height="100%" /></div>
</asp:Content>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_NoticeCj : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,7 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="NoticeGs.aspx.cs" Inherits="Web_NoticeGs" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<ul id="pagelist">
<li><span class="ldt">[06-14]</span><a href="NoticeCj.aspx"><span class="lbt">金昌兰石气化车间生产培训考试成绩(2周/6月)</span></a></li>
<li><span class="ldt">[05-27]</span><a href="javascript:alert('对不起!您没有权限查看该内容。');"><span class="lbt">关于兰石技术服务人员争先创优转正评分办法</span></a></li>
</ul>
</asp:Content>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_NoticeGs : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="PaperDetail.aspx.cs" Inherits="Web_PaperDetail" MasterPageFile="~/Exam/MasterPage.master"%>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table cellpadding="0" cellspacing="0" width="100%" frame="below">
<tr>
<td style="text-align:left; width: 80px;">
<20>Ծ<EFBFBD><D4BE><EFBFBD></td>
<td colspan="3">&nbsp;<div align="left"></div>
</td>
</tr>
<tr>
<td colspan=4>
<table cellSpacing="0" style="FONT-SIZE: 12px; FONT-FAMILY: Tahoma; BORDER-COLLAPSE: collapse; " cellPadding="0" width=100% bgColor="#ffffff" border="1" bordercolor=gray>
<tr>
<td>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.DataAccessLayer;
using OnLineExam.BusinessLogicLayer;
using System.Data.SqlClient;
public partial class Web_PaperDetail : System.Web.UI.Page
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="PaperLists.aspx.cs" Inherits="Web_PaperLists" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="top" align="left" width="860">
<h4><3E>Ծ<EFBFBD><D4BE><EFBFBD><EFBFBD><EFBFBD></h4>
<asp:Label runat="server" ID="lblMessage" Text=""></asp:Label>
<asp:GridView ID="GridView1" runat="server"<22><>AllowPaging="True" OnPageIndexChanging="GridView1_PageIndexChanging" PageSize="12" OnRowDataBound="GridView1_RowDataBound" Width="100%" AutoGenerateColumns="False" DataKeyNames="PaperID" OnRowCancelingEdit="GridView1_RowCancelingEdit" OnRowDeleting="GridView1_RowDeleting" OnRowEditing="GridView1_RowEditing" OnRowUpdating="GridView1_RowUpdating" CssClass="GridStyle" >
<Columns>
<asp:TemplateField HeaderText="<22><><EFBFBD>" Visible="False">
<ItemTemplate>
<asp:Label ID="Label1" runat="server"><%# Eval("PaperID") %></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="<22><><EFBFBD>Կ<EFBFBD>Ŀ">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.DataAccessLayer;
using OnLineExam.BusinessLogicLayer;
using System.Data.SqlClient;
public partial class Web_PaperLists : System.Web.UI.Page

@ -0,0 +1,15 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/Exam/MasterPage.master" AutoEventWireup="true" CodeFile="PaperScore.aspx.cs" Inherits="Exam_PaperScore" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table width="100%">
<tr>
<td style="text-align: left; width: 100%;">
<h4>考试记录</h4>
</td>
</tr>
<tr>
<td style="text-align: left;" colspan="2">
<asp:Label ID="lblScorePaper" runat="server" Text="" Width="126px" CssClass="BoxSearchBar"></asp:Label>
<asp:GridView ID="GridView2" runat="server" AllowPaging="true" DataKeyNames="UserID,PaperID" OnRowDataBound="GridView2_RowDataBound" OnPageIndexChanging="GridView2_PageIndexChanging" PageSize="8" AutoGenerateColumns="False" CssClass="GridStyle" Width="100%" OnRowDeleting="GridView1_RowDeleting">
<Columns>
<asp:BoundField DataField="UserID" HeaderText="UserID" ReadOnly="True" Visible="false" />

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using OnLineExam.BusinessLogicLayer;
using System.Data;
public partial class Exam_PaperScore : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
InitData();

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="PaperSetup.aspx.cs" Inherits="Web_PaperSetup" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="top" align="left" width="960px">
<table cellpadding="0" cellspacing="0" border="1" bordercolor="#cccccc" style="border-collapse:collapse" width="100%" frame="below">
<tr>
<td bgcolor="#eeeeee" style="text-align:right;width:100%;" colspan="4"> <div class="title" align="left"><h4><3E>Ծ<EFBFBD><D4BE>ƶ<EFBFBD>(<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>) &nbsp; &nbsp; <a href="PaperSetup2.aspx"><font color="red" size="2.5"><3E><><EFBFBD>ɳ<EFBFBD><C9B3><EFBFBD></font></a>
<font color="red" size="2.5"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD>䣺<asp:TextBox ID="textLength" runat="server" Width="40px"></asp:TextBox>
<asp:RegularExpressionValidator ID="RegularExpressionValidator11" runat="server" ControlToValidate="textLength" ValidationExpression="^[1-9]\d*$" ErrorMessage="ֻ<><D6BB>Ϊ<EFBFBD><CEAA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" Display="Dynamic"></asp:RegularExpressionValidator>
<asp:RequiredFieldValidator ID="RequiredFieldValidator12" runat="server" ControlToValidate="textLength" ErrorMessage="<22><><EFBFBD><EFBFBD>Ϊ<EFBFBD>գ<EFBFBD>" Display="Dynamic"></asp:RequiredFieldValidator><3E><><EFBFBD>֣<EFBFBD></font></h4></div></td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;"><3E><><EFBFBD>Կ<EFBFBD>Ŀ<EFBFBD><C4BF></td>
<td >&nbsp;<div align="left"><asp:dropdownlist id="ddlCourse" runat="server" Font-Size="9pt" Width="120px"></asp:dropdownlist></div>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
using OnLineExam.DataAccessLayer;
using System.Data.SqlClient;
public partial class Web_PaperSetup : System.Web.UI.Page

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="PaperSetup2.aspx.cs" Inherits="Web_PaperSetup2" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table cellpadding="0" cellspacing="0" border="1" bordercolor="#cccccc" style="border-collapse:collapse" width="100%" frame="below">
<tr>
<td bgcolor="#eeeeee" style="width:100%;" colspan="4"> <div class="title" align="left"><h4><3E>Ծ<EFBFBD><D4BE>ƶ<EFBFBD>(<28><><EFBFBD>ɳ<EFBFBD><C9B3><EFBFBD>) &nbsp; &nbsp; <a href="PaperSetup.aspx"><font color="red" size="2.5"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></font></a>
<font color="red" size="2.5"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD>䣺<asp:TextBox ID="textLength" runat="server" Width="40px"></asp:TextBox>
<asp:RegularExpressionValidator ID="RegularExpressionValidator2" runat="server" ControlToValidate="textLength" ValidationExpression="^[1-9]\d*$" ErrorMessage="ֻ<><D6BB>Ϊ<EFBFBD><CEAA><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" Display="Dynamic"></asp:RegularExpressionValidator>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="textLength" ErrorMessage="<22><><EFBFBD><EFBFBD>Ϊ<EFBFBD>գ<EFBFBD>" Display="Dynamic"></asp:RequiredFieldValidator><3E><><EFBFBD>֣<EFBFBD></font></h4></div></td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;"><b><3E><><EFBFBD>Կ<EFBFBD>Ŀ<EFBFBD><C4BF></b></td>
<td >&nbsp;<div align="left"><asp:dropdownlist id="ddlCourse" runat="server" OnSelectedIndexChanged="ddlCourse_click" AutoPostBack="True" Font-Size="9pt" Width="120px"></asp:dropdownlist></div>
</td>
<td bgcolor="#eeeeee" style="text-align:right;"><3E>Ծ<EFBFBD><D4BE><EFBFBD><EFBFBD>ƣ<EFBFBD></td>
<td >&nbsp;<div align="left"> <asp:TextBox ID="txtPaperName" runat="server" Width="120px"></asp:TextBox>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
using OnLineExam.DataAccessLayer;
using System.Data.SqlClient;
public partial class Web_PaperSetup2 : System.Web.UI.Page

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="PwdModify.aspx.cs" Inherits="Web_PwdModify" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table width ="100%" height="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" align="left">
<table cellpadding="0" cellspacing="0" border="1" bordercolor="#cccccc" style="border-collapse:collapse" width="100%" frame="below">
<tr>
<td bgcolor="#eeeeee" style="text-align:right;width:100%;" colspan="2"> <div class="title" align="left"><h4><3E>޸<EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD></h4></div></td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;">ԭ<><D4AD><EFBFBD>룺</td>
<td ><asp:TextBox id="txtOldPwd" runat="server" TextMode="Password" Width="170px"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtOldPwd" ErrorMessage="<22><><EFBFBD><EFBFBD>Ϊ<EFBFBD>գ<EFBFBD>"></asp:RequiredFieldValidator>
</td>
</tr>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_PwdModify : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="QuestionAdd.aspx.cs" Inherits="Web_QuestionAdd" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table cellpadding="0" cellspacing="0" border="1" bordercolor="#cccccc" style="border-collapse:collapse" width="100%" frame="below">
<tr>
<td bgcolor="#eeeeee" colspan="2"> <div class="title" align="left"><h4><3E>ʴ<EFBFBD><CAB4><EFBFBD></h4></div></td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;" width="80px"><3E><>Ŀ<EFBFBD><C4BF></td>
<td >&nbsp;<div align="left"><asp:dropdownlist id="ddlCourse" runat="server" Font-Size="9pt" Width="88px"></asp:dropdownlist></div>
</td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;"><3E><>Ŀ<EFBFBD><C4BF></td>
<td >&nbsp;<div align="left"><asp:textbox id="txtTitle" runat="server" Width="100%" TextMode="MultiLine" Height="80px"></asp:textbox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="txtTitle"

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_QuestionAdd : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="QuestionManage.aspx.cs" Inherits="Web_QuestionManage" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="top" align="left" >
<h4><3E>ʴ<EFBFBD><CAB4><EFBFBD><EFBFBD><EFBFBD><EFBFBD></h4>
<div class="BoxSearchBar"><asp:DropDownList ID="ddlCourse" runat="server" AutoPostBack="True" Width="130px" OnSelectedIndexChanged="ddlCourse_SelectedIndexChanged"></asp:DropDownList></div>
<asp:GridView ID="GridView1" runat="server" Width="100%" AutoGenerateColumns="False" AllowPaging="True" OnPageIndexChanging="GridView1_PageIndexChanging" PageSize="12" OnRowDataBound="GridView1_RowDataBound" DataKeyNames="ID" CssClass="GridStyle" OnRowDeleting="GridView1_RowDeleting">
<Columns>
<asp:TemplateField HeaderText="<22><><EFBFBD>" Visible=false>
<ItemTemplate>
<asp:Label ID="Label1" runat="server"><%# Eval("ID") %></asp:Label>
</ItemTemplate>
</asp:TemplateField>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_QuestionManage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="RoleManage.aspx.cs" Inherits="Web_RoleManage" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="top" align="left" width="960px">
<h4>Ȩ<>޹<EFBFBD><DEB9><EFBFBD></h4>
<asp:GridView ID="GV" runat="server" AllowPaging="True" AutoGenerateColumns="False" PageSize="12"
OnPageIndexChanging="GV_PageIndexChanging" OnRowDataBound="GV_RowDataBound" Width="100%" CssClass="GridStyle">
<Columns>
<asp:BoundField DataField="RoleId" HeaderText="<22><><EFBFBD>" />
<asp:BoundField DataField="RoleName" HeaderText="<22><>ɫ" />
<asp:TemplateField HeaderText="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD>">
<ItemTemplate>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_RoleManage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/Exam/MasterPage.master" AutoEventWireup="true" CodeFile="SelectExam.aspx.cs" Inherits="Exam_SelectExam" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table cellpadding="0" cellspacing="0" border="1" bordercolor="#cccccc" style="border-collapse:collapse" width="100%" frame="below">
<tr>
<td bgcolor="#EDF1F6" style="text-align:left;width:100%;" colspan="2">
<h4>练习:选择试卷</h4>
</td>
</tr>
<tr>
<td bgcolor="#EDF1F6" style="text-align:right;">请选择考卷:</td>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using OnLineExam.BusinessLogicLayer;
using System.Data;
using OnLineExam.DataAccessLayer;
public partial class Exam_SelectExam : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{

@ -0,0 +1,15 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/Exam/MasterPage.master" AutoEventWireup="true" CodeFile="SelectPaper.aspx.cs" Inherits="Exam_SelectPaper" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table cellpadding="0" cellspacing="0" border="1" bordercolor="#cccccc" style="border-collapse:collapse" width="100%" frame="below">
<tr>
<td bgcolor="#EDF1F6" style="text-align:left;width:100%;" colspan="2">
<h4>考试:选择试卷</h4>
</td>
</tr>
<tr>
<td bgcolor="#EDF1F6" style="text-align:right;">请选择考卷:</td>

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using OnLineExam.BusinessLogicLayer;
using System.Data;
using OnLineExam.DataAccessLayer;
public partial class Exam_SelectPaper : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="SingleSelectAdd.aspx.cs" Inherits="Web_SingleSelectAdd" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table cellpadding="0" cellspacing="0" border="1" bordercolor="#cccccc" style="border-collapse:collapse" width="100%" frame="below">
<tr>
<td bgcolor="#eeeeee" colspan="2"> <div class="title" align="left"><h4><3E><>ѡ<EFBFBD><D1A1></h4></div></td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;" width="80px"><3E><>Ŀ<EFBFBD><C4BF></td>
<td >&nbsp;<div align="left"><asp:dropdownlist id="ddlCourse" runat="server" Font-Size="9pt" Width="88px"></asp:dropdownlist></div>
</td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;"><3E><>Ŀ<EFBFBD><C4BF></td>
<td >&nbsp;<div align="left"><asp:textbox id="txtTitle" runat="server" Width="100%" TextMode="MultiLine"<22><>Height="50px"></asp:textbox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="txtTitle"

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_SingleSelectAdd : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="SingleSelectManage.aspx.cs" Inherits="Web_SingleSelectManage" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="top" align="left" >
<h4><3E><>ѡ<EFBFBD><D1A1><EFBFBD><EFBFBD><EFBFBD></h4>
<div class="BoxSearchBar"><asp:DropDownList ID="ddlCourse" runat="server" AutoPostBack="True" Width="130px" OnSelectedIndexChanged="ddlCourse_SelectedIndexChanged"></asp:DropDownList></div>
<asp:GridView ID="GridView1" runat="server" Width="100%" AutoGenerateColumns="False" AllowPaging="True" OnPageIndexChanging="GridView1_PageIndexChanging" PageSize="12" OnRowDataBound="GridView1_RowDataBound" DataKeyNames="ID" CssClass="GridStyle" OnRowDeleting="GridView1_RowDeleting">
<Columns>
<asp:TemplateField HeaderText="<22><><EFBFBD>" Visible=false>
<ItemTemplate>
<asp:Label ID="Label1" runat="server"><%# Eval("ID") %></asp:Label>
</ItemTemplate>
</asp:TemplateField>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_SingleSelectManage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="StudentIndex.aspx.cs" Inherits="Web_StudentIndex" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title><3E><><EFBFBD><EFBFBD><EFBFBD>ʯ<EFBFBD><CAAF><EFBFBD>߿<EFBFBD><DFBF><EFBFBD>ϵͳ</title>
<link rel="icon" href="css/favicon.ico" type="image/x-icon" />
<script src="../JS/Morning_JS.js" type="text/javascript"></script>
<link href="../CSS/CSS.css" rel="stylesheet" type="text/css" />
</head>
<body style="margin: 0px" onload="showTime();">
<form id="Form1" method="post" runat="server">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_StudentIndex : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="TestAnswer.aspx.cs" Inherits="Web_TestAnswer" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>试卷答案</title>
</head>
<body topmargin=2 leftmargin=0 rightmargin=0>
<form id="form1" runat="server">
<div>
<table cellSpacing="0" style="FONT-SIZE: 12px; FONT-FAMILY: Tahoma; BORDER-COLLAPSE: collapse; " cellPadding="0" width=500 align="center"
bgColor="#ffffff" border="1" bordercolor=gray>
<tr height=40>
<td align=center>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.DataAccessLayer;
using System.Data.SqlClient;
using OnLineExam.BusinessLogicLayer;
public partial class Web_TestAnswer : System.Web.UI.Page

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="UserAdd.aspx.cs" Inherits="Web_UserAdd" MasterPageFile="~/Exam/MasterPage.master"%>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="top" align="left" width="960px">
<table cellpadding="0" cellspacing="0" border="1" bordercolor="#cccccc" style="border-collapse:collapse" width="100%" frame="below">
<tr>
<td bgcolor="#eeeeee" style="text-align:right;width:100%;" colspan="2"> <div class="title" align="left"><h4><3E><><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD></h4></div></td>
</tr>
<tr>
<td bgcolor="#eeeeee" style="text-align:right;"><3E><>ţ<EFBFBD></td>
<td >&nbsp;<div align="left"><asp:TextBox id="txtUserID" runat="server" MaxLength="20"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtUserID" ErrorMessage="<22><><EFBFBD><EFBFBD>Ϊ<EFBFBD>գ<EFBFBD>"></asp:RequiredFieldValidator>
</div>
</td>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
using System.Data.SqlClient;
public partial class Web_UserAdd : System.Web.UI.Page
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="UserManage.aspx.cs" Inherits="Web_UserManage" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="top" align="left" width="960px">
<h4><3E>û<EFBFBD><C3BB><EFBFBD><EFBFBD><EFBFBD></h4>
<div class="BoxSearchBar">
<20>û<EFBFBD>ID<49><44>
<asp:TextBox ID="tbxUserID" runat="server" Width="66px"></asp:TextBox>
<20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <asp:TextBox ID="tbxUserName" runat="server" Width="66px"></asp:TextBox>
<asp:ImageButton ID="ImageButtonQuery" runat="server" ImageUrl="css/Images/BtnQuery.gif" OnClick="ImageButtonQuery_Click"></asp:ImageButton>
<asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="css/Images/BtnBack.gif" OnClick="ImageButtonBack_Click"></asp:ImageButton></div>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
using OnLineExam.DataAccessLayer;
using System.Data.SqlClient;
public partial class Web_UserManage : System.Web.UI.Page

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="UserPaper.aspx.cs" Inherits="Web_UserPaper" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table cellpadding="0" cellspacing="0" width="100%" class="GridStyle">
<tr>
<td style="text-align: left;"><3E><><EFBFBD><EFBFBD><EFBFBD>ˣ<EFBFBD></td>
<td>
<asp:Label ID="lblUser" runat="server" Text="Label"></asp:Label>
</td>
</tr>
<tr>
<td style="text-align: left;"><3E>Ծ<EFBFBD><D4BE><EFBFBD></td>
<td>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
using System.Data.SqlClient;
using OnLineExam.DataAccessLayer;
public partial class Web_UserPaper : System.Web.UI.Page
{

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="UserPaperList.aspx.cs" Inherits="Web_UserPaperList" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="top" align="left" >
<h4><3E>û<EFBFBD><C3BB>Ծ<EFBFBD><D4BE><EFBFBD><EFBFBD><EFBFBD></h4>
<asp:GridView ID="GridView1" runat="server" AllowPaging="true" DataKeyNames ="UserID,PaperID" OnRowDataBound="GridView1_RowDataBound" OnPageIndexChanging="GridView1_PageIndexChanging" PageSize="8" AutoGenerateColumns="False" CssClass="GridStyle" Width="100%" OnRowDeleting="GridView1_RowDeleting">
<Columns>
<asp:BoundField DataField="UserID" Visible="False" HeaderText="UserID" ReadOnly="True"/>
<asp:BoundField DataField="PaperID" Visible="False" HeaderText="PaperID" ReadOnly="True"/>
<asp:TemplateField HeaderText="<22>û<EFBFBD><C3BB><EFBFBD><EFBFBD><EFBFBD>">
<ItemTemplate>
<asp:Label ID="Label2" runat="server"><%# Eval("UserName") %></asp:Label>
</ItemTemplate>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
public partial class Web_UserPaperList : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="UserScore.aspx.cs" Inherits="Web_UserScore" MasterPageFile="~/Exam/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td valign="top" align="left" >
<h4><3E>ɼ<EFBFBD><C9BC><EFBFBD><EFBFBD><EFBFBD></h4>
<asp:GridView ID="GridView1" runat="server" AllowPaging="true" OnRowDataBound="GridView1_RowDataBound" OnPageIndexChanging="GridView1_PageIndexChanging" PageSize="12" AutoGenerateColumns="False" DataKeyNames="ID" CssClass="GridStyle" Width="100%" OnRowDeleting="GridView1_RowDeleting" >
<Columns>
<asp:TemplateField HeaderText="<22>ɼ<EFBFBD><C9BC><EFBFBD><EFBFBD>" Visible="False">
<ItemTemplate>
<asp:Label ID="Label1" runat="server"><%# Eval("ID") %></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="<22>û<EFBFBD>ID" Visible="False">

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.BusinessLogicLayer;
using System.IO;
using System.Data.OleDb;
public partial class Web_UserScore : System.Web.UI.Page

@ -0,0 +1,15 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="UserTest.aspx.cs" Inherits="Web_UserTest" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>金昌兰石在线培训考试系统</title>
<link rel="icon" href="css/favicon.ico" type="image/x-icon" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/against.css" rel="stylesheet" type="text/css" />
<link href="JS/menu/menu.css" rel="stylesheet" />
<script src="JS/jquery.1.4.2-min.js"></script>
<script src="JS/menu/against.js"></script>
<script src="JS/menu/jquery.menu.js"></script>
</head>

@ -0,0 +1,15 @@
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 OnLineExam.DataAccessLayer;
using System.Data.SqlClient;
using OnLineExam.BusinessLogicLayer;
public partial class Web_UserTest : System.Web.UI.Page

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save