为每个页面加上Session判断的小例子

首先新建一个类,继承自System.Web.UI.Page,然后重写OnInit,如下:

复制代码 代码如下:


using System;
using System.Data;
using System.Configuration;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;

namespace FuSession
{
    public class JudgeSession : System.Web.UI.Page
    {
        protected override void OnInit(EventArgs e)
        {
            base.OnInit(e);
            if (Session.Keys.Count <= 0)
            {
                Response.Redirect("~/TiaoZh.htm", true);
            }
            else
            {
                if (Session["UserId"] == null && Session["Qx"] == null && Session["Dept"] == null && Session["UserName"] == null && Session["QxType"]==null)
                {
                    Response.Redirect("~/TiaoZh.htm", true);
                }
            }
        }      
    }
}

页面中按照如下方法引用即可。

复制代码 代码如下:


public partial class QrDeptMan_Home : FuSession.JudgeSession

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjgzyd.html