资源简介
期末题库管理系统源码
为了实现提高管理部门的工作效率;充分利用资源;减少不必要的人力,物力和财力的支出;方便教师人事管理部门的工作人员全面地掌握学生等目的;为题库管理部门,开发设计专用系统--题库管理系统来进行管理题库信息,使题库实现标准化的管理和规范化的制度是十分必要的。专用系统是一个信息管理系统MIS(Management Information System)(以下就称信息管理系统)[1],它将实现检索迅速和查找方便;信息的录入,修改和删除功能。
代码片段和文件信息
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(“Data Source=JIE-pc\\SQL2005;Initial Catalog=examonline;Persist Security Info=True;User ID=sa;Password=sa“);
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();
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 56698 2011-07-05 09:28 试题管理系统(短学期课程设计)\054.swf
文件 5078 2011-07-05 18:33 试题管理系统(短学期课程设计)\adminpwd.aspx
文件 2529 2011-07-04 22:57 试题管理系统(短学期课程设计)\adminpwd.aspx.cs
文件 6503 2011-07-04 12:18 试题管理系统(短学期课程设计)\adminpwd.aspx.resx
文件 2113 2011-07-04 22:57 试题管理系统(短学期课程设计)\App_Code\AssemblyInfo.cs
文件 1558 2011-07-04 22:57 试题管理系统(短学期课程设计)\App_Code\Global.asax.cs
文件 6805 2011-07-05 10:54 试题管理系统(短学期课程设计)\createexam.aspx
文件 7418 2011-07-05 10:59 试题管理系统(短学期课程设计)\createexam.aspx.cs
文件 6387 2011-07-04 12:30 试题管理系统(短学期课程设计)\createexam.aspx.resx
文件 450 2011-07-04 12:20 试题管理系统(短学期课程设计)\Default.aspx
文件 419 2011-07-04 12:20 试题管理系统(短学期课程设计)\Default.aspx.cs
文件 1719 2011-07-04 12:21 试题管理系统(短学期课程设计)\examonline.sln
..A..H. 6656 2011-07-03 09:21 试题管理系统(短学期课程设计)\examonline.suo
文件 64 2011-07-04 12:21 试题管理系统(短学期课程设计)\Global.asax
文件 5885 2011-07-04 12:22 试题管理系统(短学期课程设计)\Global.asax.resx
文件 4399 2011-07-04 12:25 试题管理系统(短学期课程设计)\help.aspx
文件 910 2011-07-04 12:36 试题管理系统(短学期课程设计)\help.aspx.cs
文件 5317 2011-07-04 12:36 试题管理系统(短学期课程设计)\help.aspx.resx
文件 54481 2011-07-04 11:54 试题管理系统(短学期课程设计)\images\054.SWF
文件 356 2003-03-18 15:37 试题管理系统(短学期课程设计)\images\bg1222.jpg
文件 354 2003-03-18 15:37 试题管理系统(短学期课程设计)\images\bg1223.jpg
文件 152 2003-03-19 20:50 试题管理系统(短学期课程设计)\images\copyright.gif
文件 220 2003-03-19 20:50 试题管理系统(短学期课程设计)\images\footer.gif
..A.SH. 46080 2007-04-02 20:13 试题管理系统(短学期课程设计)\images\Thumbs.db
文件 63351 2011-07-04 11:19 试题管理系统(短学期课程设计)\images\ti
文件 652 2011-07-04 12:38 试题管理系统(短学期课程设计)\img.aspx
文件 2030 2011-07-05 10:43 试题管理系统(短学期课程设计)\img.aspx.cs
文件 5886 2011-07-04 12:37 试题管理系统(短学期课程设计)\img.aspx.resx
文件 5131 2011-07-07 18:50 试题管理系统(短学期课程设计)\index.aspx
文件 2102 2011-07-05 19:42 试题管理系统(短学期课程设计)\index.aspx.cs
............此处省略21个文件信息
- 上一篇:基于PIC16F877A单片机字符液晶显示数字时钟
- 下一篇:数控机床课程设计说明书
相关资源
- 数控机床课程设计说明书
- EDA课程设计——计费器
- 微机原理课程设计---密码键盘
- 数据结构课程设计,
- 八路抢答器课程设计报告
- 操作系统课程设计生产者与消费者
- 数字逻辑电路红绿灯设计
- 超外差接收机课程设计
- zw_wangxingse-6021953-24C04与1602LCD设计电子
-
xm
l课程设计代码 - 高频课程设计 混频器
- 电力电子与电力传动课程设计
- 数字电路七彩灯课程设计报告
- 面向对象课程设计.doc
- 锅炉课程设计xlsm自动计算
- 微机原理课程设计——交通灯控制系
- 张紧轮支架课程设计淘宝买的
- 信息安全课程设计报告
- 武汉理工大学 课程设计 Proteus信号发
- 数据结构课程设计 表达式求值
- 江苏科技大学计算机软件专业课程设
- 电子琴课程设计报告.doc
- 单片机课程设计,数字电压表,主要
- 单片机课程设计流水灯全套
- 药物管理系统的期末课设
- 数据结构课程设计——地铁建设问题
- 学生信息管理系统课程设计(完整版
- 图书销售管理系统数据库课程设计1
- 数据结构课程设计校园导游系统
- 东北大学EDA数字钟课程设计报告
评论
共有 条评论