ASP.NET 使用web.config配置文件的system.webServer/modules标签实现登录验证

前言

  • modules 标签允许你添加、删除或配置在 IIS 中运行的 HTTP 模块。HTTP 模块是处理 HTTP 请求和响应的组件,它们可以在请求处理管道的不同阶段执行代码。
  • 某些 system.webServer 中的设置可能只适用于 IIS 的特定模式(如集成模式),而不适用于其他模式(如经典模式)
  • 当你需要扩展 IIS 的功能或自定义 HTTP 请求/响应处理流程时,可以使用 modules 标签来添加自定义的 HTTP 模块
  • 请注意,修改 IIS 配置可能会影响到网站或应用程序的行为和安全性
  • 使用场景:多个应用系统,使用同一个登录模块

1、Web.config配置文件

注意:以下内容为部分配置,不是整个web.config的配置

XML 复制代码
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
	<!--指定配置文件读取类-->
    <section name="MyLoginCheck" type="Login.Client.ConfigReader,Login.Client"/>
  </configSections>

  <MyLoginCheck>
    <!--配置项-->
    <add key="setting1" value="value11" />
    <add key="setting2" value="value22" />
  </MyLoginCheck>
  
  <system.webServer>
    <modules>
      <!--配置http请求预处理模块-->
      <add name="LoginClientHttpModule" type="Login.Client.LoginCheck,Login.Client" />
    </modules>
  </system.webServer>
</configuration>

2、配置读取类

cs 复制代码
using System.Collections.Generic;
using System.Configuration;
using System.Xml;

namespace Login.Client
{
    public class ConfigReader : IConfigurationSectionHandler
    {
        public object Create(object parent, object configContext, XmlNode section)
        {
            var settings = new Dictionary<string, string>();
            foreach (XmlNode child in section.ChildNodes)
            {
                //<add key="" value=""/>属于XmlNodeType.Element
                if (child.NodeType == XmlNodeType.Element)
                {
                    var key = child.Attributes["key"]?.Value;
                    var value = child.Attributes["value"]?.Value;
                    if (!string.IsNullOrEmpty(key) && !string.IsNullOrEmpty(value))
                    {
                        settings.Add(key, value);
                    }
                }
            }

            return settings; // 返回解析后的配置数据
        }


        private static object locker = new object();
        private static Dictionary<string, string> _loginSetting;
        /// <summary>
        /// 配置键值对
        /// </summary>
        public static Dictionary<string, string> LoginSetting
        {
            get
            {
                if (_loginSetting == null)
                {
                    lock (locker)
                    {
                        if (_loginSetting == null)
                        {
                            _loginSetting = (Dictionary<string, string>)ConfigurationManager.GetSection("MyLoginCheck");
                        }
                    }
                }
                return _loginSetting;
            }
        }

    }
}

3、登录校验类

cs 复制代码
using Newtonsoft.Json;
using System;
using System.Web;
using System.Xml;

namespace Login.Client
{
    public class LoginCheck : IHttpModule
    {
        public void Dispose()
        {
            
        }

        public void Init(HttpApplication context)
        {
            // 使用AcquireRequestState:当ASP.NET获取与当前的请求相关联的当前状态(例如会话状态)
            context.AcquireRequestState += new EventHandler(Check);
        }
        

        private void Check(Object source, EventArgs e)
        {
            HttpApplication application = (HttpApplication)source;
            HttpContext context = application.Context;//context.Session 获取会话

            // 尝试从集合中获取设置值
            if (ConfigReader.LoginSetting == null)
            {
                return;
            }
            string setting1 = ConfigReader.LoginSetting["setting1"]?.ToString();
            string setting2 = ConfigReader.LoginSetting["setting2"].ToString();
            
            if (isLogin())
            {
                // 用户未登录,重定向到登录页面
                context.Response.Redirect(setting1, true);
            }

        }
		
		private bool isLogin(){
			//这里替换为判断是否登录逻辑
			return false;
		}

    }
}
相关推荐
浮生如梦_40 分钟前
C# 窗体工厂类 - 简单工厂模式演示案例
计算机视觉·c#·视觉检测·简单工厂模式
两千次1 小时前
web主从站
windows·c#
lihongli0001 小时前
四连杆机构驱动角与被驱动连杆角度关系
c#
℡枫叶℡1 小时前
C# - 指定友元程序集
开发语言·c#·友元程序集
黑棠会长1 小时前
微服务实战.06 |微服务对话时,你选择打电话还是发邮件?
微服务·云原生·架构·c#
xb11322 小时前
C#串口通信
开发语言·c#
奥特曼打小白2 小时前
Microsoft SQL Server2025的下载、安装与配置——从环境、管理工具、配置管理器入手,解决VS2022ASP.NET网站项目中SqlDataSource控件找不到服务器的问题
sqlserver·asp.net
周杰伦fans2 小时前
CAD二次开发中的线程、异步操作与LockDocument
c#
William_cl3 小时前
ASP.NET路由类型约束核心精讲:[HttpGet (“{id:int}“)] 整数约束吃透,附避坑指南 + 实战代码
后端·asp.net
绿浪19843 小时前
C#与C++高效互操作指南
c++·c#