• 大小: 482KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-05-29
  • 语言: ASP
  • 标签: asp  

资源简介

本资源包含在线考试系统的完整代码,使用asp开发的完整项目。供项目开发人员参考借鉴。

资源截图

代码片段和文件信息

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

namespace TestOnline
{
/// 
/// admin 的摘要说明。
/// 

public class admin : System.Web.UI.Page
{
protected System.Web.UI.WebControls.TextBox tbx_oldPwd;
protected System.Web.UI.WebControls.TextBox tbx_newPwd1;
protected System.Web.UI.WebControls.TextBox tbx_newPwd2;
protected System.Web.UI.WebControls.ImageButton Ibtn_ok;

private void Page_Load(object sender System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
if(Session[“adminId“]==null)
{Response.Redirect(“login.aspx“);
}

}

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

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

private void InitializeComponent()
{    
this.Ibtn_ok.Click += new System.Web.UI.ImageClickEventHandler(this.Ibtn_ok_Click);
this.Load += new System.EventHandler(this.Page_Load);

}
#endregion

private void Ibtn_ok_Click(object sender System.Web.UI.ImageClickEventArgs e)
{
string adminId=Convert.ToString(Session[“adminId“]);
string adminPwd=tbx_oldPwd.Text.Trim();
string newPwd1=tbx_newPwd1.Text.Trim();
string newPwd2=tbx_newPwd2.Text.Trim();
if(newPwd1==““||newPwd2==““)
Response.Write(“ript>alert(\“密码不能为空\“);ript>“);
else
{
int count=(new projClass()).getAdmin(adminIdadminPwd);
if(count==0)
{
Response.Write(“ript>alert(\“密码错误!请重新输入\“);ript>“);
}
else
{
if(!newPwd1.Equals(newPwd2))
Response.Write(“ript>alert(\“两次密码不一致!请重新输入!\“);ript>“);
else
{
int count1=(new projClass()).updateAdminPwd(adminIdnewPwd1);
if(count1==1)
Response.Write(“ript>alert(\“密码修改成功!\“);ript>“);
else  Response.Write(“ript>alert(\“更新失败!\“);ript>“);
}
}
}
}




}
}

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

     文件       6167  2006-02-26 15:41  testResult.aspx.cs

     文件       5317  2006-02-26 15:26  testResult.aspx.resx

     文件       3124  2006-02-26 15:36  testResultSingle.aspx

     文件       5704  2006-02-26 15:41  testResultSingle.aspx.cs

     文件       5317  2006-02-26 14:08  testResultSingle.aspx.resx

     文件       4118  2006-02-27 16:41  testUpdate.aspx

     文件       4864  2006-02-27 16:10  testUpdate.aspx.cs

     文件       5317  2006-02-26 16:25  testUpdate.aspx.resx

     文件       4125  2006-02-27 16:41  testUpdateByTeacher.aspx

     文件       4800  2006-02-27 16:14  testUpdateByTeacher.aspx.cs

     文件       5317  2006-02-27 15:47  testUpdateByTeacher.aspx.resx

     文件        845  2006-01-06 14:50  top.htm

     文件        312  2006-01-06 13:07  underframe.html

     文件       4333  2006-02-27 16:57  userInfo.aspx

     文件       5001  2006-02-27 16:57  userInfo.aspx.cs

     文件       5317  2006-02-27 16:57  userInfo.aspx.resx

     文件       4487  2007-03-25 10:32  Web.config

     文件        987  2006-02-26 14:08  WebForm2.aspx

     文件       1022  2006-02-26 14:08  WebForm2.aspx.cs

     文件       5317  2006-02-26 14:08  WebForm2.aspx.resx

     文件      98304  2006-02-27 17:05  bin\TestOnline.dll

     文件     245248  2006-02-27 17:05  bin\TestOnline.pdb

     目录          0  2006-02-22 18:18  bin

     文件      55722  2006-01-20 02:18  images\3.jpg

     文件      25780  2006-01-09 00:43  images\4_r1_c2.jpg

     文件       1452  2005-08-10 21:57  images\adsf.jpg

     文件      28463  2006-01-07 15:14  images\book_r1_c2.jpg

     文件        189  2005-12-23 03:05  images\btn_allchoose_1.gif

     文件        188  2005-12-23 03:05  images\btn_allclean_1.gif

     文件        648  2005-12-23 03:05  images\btn_amend_1.gif

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

评论

共有 条评论