这篇文章主要为大家详细介绍了.net后台页面统一验证是否登录的方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了.net后台页面统一验证是否登录的具体代码,供大家参考,具体内容如下

首先新写一个PageBase类


using System;using System.Collections.Generic;using System.Web;namespace DepartmentMIS.Web.myclass{  public class PageBase : System.Web.UI.Page  {    public PageBase()    {      this.Load += new EventHandler(BasePage_Load);    }    private void BasePage_Load(object sender, EventArgs e)    {      if (Session["UserNo"] == null || Session["UserNo"].ToString() == "")      {        Response.Redirect("~/Login.aspx");      }    }  }}

Login页面后台部分代码


protected void btnLogin_Click(object sender, EventArgs e)    {      if (rblRole.SelectedValue == "1")      {        DataSet ds = AdminBLL.GetList("userName = '" + tbxUserName.Text.Trim() + "' and password = '" + tbxPassword.Text.Trim()+"' and isDeleted = 0");        if (ds.Tables[0].Rows.Count == 1)        {          int id = Convert.ToInt32(ds.Tables[0].Rows[0]["id"]);          Session["UserNo"] = ds.Tables[0].Rows[0]["id"];          Session["UserName"] = ds.Tables[0].Rows[0]["userName"];          Response.Redirect("admin/adminIndex.aspx");        }        else        {          Response.Write("<script>alert('用户名或密码错误!')</script>");        }      }      if (rblRole.SelectedValue == "2")      {        DataSet ds = StuBLL.GetList("stuNo = '" + tbxUserName.Text.Trim() + "' and password = '" + tbxPassword.Text.Trim() + "' and isDeleted = 0");        if (ds.Tables[0].Rows.Count == 1)        {          int id = Convert.ToInt32(ds.Tables[0].Rows[0]["id"]);          Session["UserNo"] = ds.Tables[0].Rows[0]["id"];          Session["UserName"] = ds.Tables[0].Rows[0]["stuName"];          Response.Redirect("student/stusIndex.aspx");        }        else        {          Response.Write("<script>alert('用户名或密码错误!')</script>");        }      }

以stuWishChoices页面为例,继承PageBase类


using System.Web.UI.WebControls.WebParts;using System.Data.SqlClient;using System.Collections;namespace cbmis.ProDocumentMng{  public partial class DocumentList : BasePage //继承  {      protected void Page_Load(object sender, EventArgs e)      {          }    }  }}

更多相关文章

  1. ASP.NET Core Razor页面路由的详细介绍
  2. 如何区分c# 前台和后台线程
  3. 用XML和XSL来生成动态页面
  4. XML创建可排序、分页的数据显示页面
  5. 使用xmldom在服务器端生成静态html页面
  6. 浅谈WEB页面工具语言XML(一)产生背景
  7. 浅谈WEB页面工具语言XML(三)支持工具
  8. 浅谈WEB页面工具语言XML(四)应用分类
  9. 浅谈WEB页面工具语言XML(六)展望

随机推荐

  1. android中layout_gravity 和 gravity的区
  2. Android项目运行提示
  3. android 实现静默安装、卸载(图)
  4. android studio单元测试
  5. android 中activity 属性说明
  6. android 多种特效TextView
  7. Android 中级教程之------Android MediaP
  8. mono for android 百度map binding项目
  9. Android 进阶之 Android消息机制Handler
  10. Android NDK会带来什么,除去你对NDK的一些