• 大小: 357KB
    文件类型: .rar
    金币: 2
    下载: 2 次
    发布日期: 2021-11-23
  • 语言: 其他
  • 标签: 组卷  

资源简介

可以在线创建试卷,包括选择题\问答题\填空题,也可以进行试卷选择并重组,试卷设置包括试卷名字\何时考试\考试时间\

资源截图

代码片段和文件信息

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Web.Security;

//该源码下载自www.51aspx.com(51aspx.com)
namespace examonline
{
/// 
/// adminpwd 的摘要说明。
/// 

public partial class adminpwd : System.Web.UI.Page
{

protected void Page_Load(object sender System.EventArgs e)
{
if((bool)Session[“IsLogined“]==false)
{
Response.Redirect(“index.aspx“);
}
lblmsg.Text=(string)Session[“info“];
Session[“info“]=““;
}

#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}

/// 
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// 

private void InitializeComponent()
{    

}
#endregion

protected void btnlogin_Click(object sender System.EventArgs e)
{
string oldpwd = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(txtOldpwd.Text “MD5“);
string newpwd = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(txtNewpwd.Text “MD5“);
string repwd = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(txtRepwd.Text “MD5“);
if(newpwd!=repwd)
{
Session[“info“]=“密码确认有误!“;
Response.Redirect(“adminpwd.aspx“);
Response.End();
}
string sql = “update [admin] set password=‘“+newpwd+“‘ where username=‘“ + txtid.Text.Trim() + “‘ and password=‘“ + oldpwd + “‘“;
SqlConnection cn = new SqlConnection(“server=(local);uid=sa;pwd=51aspx;database=examonline“);
SqlCommand cmd = new SqlCommand(sql cn);
try
{
cn.Open();
int h = cmd.ExecuteNonQuery();
if(h>0)
{
lblmsg.Text=“修改成功!“;

}
else
{
Session[“info“] = “用户名或密码错误!“;
Response.Redirect(“adminpwd.aspx“);
Response.End();
}
}
catch(SqlException ex)
{
Session[“info“] = “数据库错误:“ + ex.Message.ToString();
Response.Redirect(“adminpwd.aspx“);
Response.End();
}
finally
{
cn.Close();
}
}
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        501  2010-03-04 17:23  simpleExam_51aspx\7880源码网.txt

     文件       1361  2009-12-07 15:58  simpleExam_51aspx\下载说明.html

     文件         63  2007-10-21 17:22  simpleExam_51aspx\Global.asax

     文件       5050  2007-10-21 17:22  simpleExam_51aspx\adminpwd.aspx

     文件       6927  2007-10-21 17:22  simpleExam_51aspx\createexam.aspx

     文件        528  2007-11-06 09:21  simpleExam_51aspx\Default.aspx

     文件       4495  2007-11-06 09:22  simpleExam_51aspx\help.aspx

     文件        642  2007-10-21 17:22  simpleExam_51aspx\img.aspx

     文件       5070  2007-10-21 17:22  simpleExam_51aspx\index.aspx

     文件      11447  2007-10-21 17:22  simpleExam_51aspx\regroup.aspx

     文件       6162  2007-10-21 17:22  simpleExam_51aspx\selectexam.aspx

     文件       2083  2007-10-21 17:22  simpleExam_51aspx\show.aspx

     文件       5020  2007-10-21 17:22  simpleExam_51aspx\showexam.aspx

     文件       4232  2007-11-06 09:01  simpleExam_51aspx\Web.config

     文件       2468  2007-11-06 09:16  simpleExam_51aspx\adminpwd.aspx.cs

     文件       2115  2007-10-21 17:22  simpleExam_51aspx\App_Code\AssemblyInfo.cs

     文件       7294  2007-11-06 09:04  simpleExam_51aspx\createexam.aspx.cs

     文件        409  2007-10-21 17:26  simpleExam_51aspx\Default.aspx.cs

     文件       1556  2007-10-21 17:22  simpleExam_51aspx\App_Code\Global.asax.cs

     文件        964  2007-10-21 17:22  simpleExam_51aspx\help.aspx.cs

     文件       2028  2007-10-21 17:22  simpleExam_51aspx\img.aspx.cs

     文件       2089  2007-11-06 09:17  simpleExam_51aspx\index.aspx.cs

     文件      10638  2007-11-06 09:04  simpleExam_51aspx\regroup.aspx.cs

     文件       2821  2007-11-06 09:04  simpleExam_51aspx\selectexam.aspx.cs

     文件       3049  2007-11-06 09:04  simpleExam_51aspx\show.aspx.cs

     文件       2734  2007-11-06 09:04  simpleExam_51aspx\showexam.aspx.cs

    ..A.SH.     46080  2007-04-02 20:13  simpleExam_51aspx\images\Thumbs.db

     文件     177664  2007-05-27 10:27  simpleExam_51aspx\0544.fla

     文件    1048576  2007-11-06 09:31  simpleExam_51aspx\DB_51aspx\examonline_Log.LDF

     文件    1179648  2007-11-06 09:31  simpleExam_51aspx\DB_51aspx\examonline_Data.MDF

............此处省略28个文件信息

评论

共有 条评论