asp.net一个已实现的登陆过滤器


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
using System.Text.RegularExpressions;

namespace MyMook
{
    public class MyHttpModule : IHttpModule
    {
        public void Dispose()
        {
        }

        public void Init(HttpApplication application)
        {
            application.AcquireRequestState += new EventHandler(context_AcquireRequestState);
           // application.BeginRequest += new EventHandler(context_AcquireRequestState);
          //这里面要注意千万不要写成BeginRequest,那样就会无法获得session
        }

        void context_AcquireRequestState(Object source, EventArgs e)
        {
            HttpApplication application = (HttpApplication)source;
            HttpContext context = application.Context;
            string path=context.Request.Path;
            if (!context.Request.CurrentExecutionFilePathExtension.Equals(".aspx") && !context.Request.CurrentExecutionFilePathExtension.Equals(".ashx") ) {
                return;
            }//此处保证只过滤aspx/ashx/htm的请求
            Match m = Regex.Match(path,@"/WebLogin/+");
            if (m.Success) {
                return;
            }//不过滤文件夹WebLogin中的内容
            try
            {
                object user = context.Session["user"];
                if (user == null)
                {
                    context.Response.Redirect("~/WebLogin/Login.aspx");
                }
                else {
                    return;
                }
            }
            catch {
                context.Response.Redirect("~/WebLogin/Login.aspx");
            }
        }

        } 
    }

在web.config中:

      <httpModules>
          <add  name="MyHttpModule" type="MyMook.MyHttpModule,MyMook"/>
      </httpModules>

要点:

1.注册事件时,不要写application.BeginRequest,这样会导致无法获得Session.

         application.AcquireRequestState += new EventHandler(context_AcquireRequestState);
           // application.BeginRequest += new EventHandler(context_AcquireRequestState);
 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值