• 大小: 3.4MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-10
  • 语言: 其他
  • 标签:

资源简介

车辆综合管理系统源代码

资源截图

代码片段和文件信息

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;

public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender EventArgs e)
    {
       
            if (!this.IsPostBack)
            {
                this.ViewState[“GUID“] = System.Guid.NewGuid().ToString();
                this.lblGUID.Text = this.ViewState[“GUID“].ToString();
            }
      

    }
    protected void btnLogin_Click(object sender ImageClickEventArgs e)
    {

        #region 检查验证码
        if ((Session[“CheckCode“] != null) && (Session[“CheckCode“].ToString() != ““))
        {
            if (Session[“CheckCode“].ToString().ToLower() != this.CheckCode.Value.ToLower())
            {
                this.lblMsg.Text = “所填写的验证码与所给的不符 !“;
                Session[“CheckCode“] = null;
                return;
            }
            else
            {
                Session[“CheckCode“] = null;
            }
        }
        else
        {
            Response.Redirect(“Default.aspx“);
        }
        #endregion

        Maticsoft.BLL.db_User db = new Maticsoft.BLL.db_User();
        Maticsoft.Model.db_User mode=db.GetModel(this.txtUsername.Value this.txtPass.Value);
        if (mode!=null)
        {
            Session[“USERINFO“] = mode;
            Response.Redirect(“Main.aspx“);
        }
        else
        {
            this.lblMsg.Text = “你的账号密码有误“;
        }
    }
}

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

     文件    2359068  2013-03-14 23:10  020ASP.NET车辆综合管理系统演示录像.exe

----------- ---------  ---------- -----  ----

              2359068                    1


评论

共有 条评论

相关资源