EntityFramework的HttpModule和HttpHandler对象

HttpModule对象

创建HttpModule类

创建HttpModule类

实现IHttpModule接口

public class Module : IHttpModule
{
	{
        public void Dispose()
        {
            throw new NotImplementedException();
        }

        public void Init(HttpApplication context)
        {
            throw new NotImplementedException();
        }
}

在Init方法内为HttpApplication对象绑定两个事件

1.HttpHandler请求处理之前触发的事件

context.BeginRequest += Context_BeginRequest;
  1. HttpHandler结束处理请求后触发的事件
context.EndRequest += Context_EndRequest;

为处理请求之前、之后附加信息

  1. 为处理请求之前附加信息
private void Context_EndRequest(object sender, EventArgs e)
        {
            HttpApplication application = sender as HttpApplication;
            application.Response.Write("<p>HttpModule开始处理请求");
        }
private void Context_BeginRequest(object sender, EventArgs e)
        {
            HttpApplication application = sender as HttpApplication;
            application.Response.Write("<p>HttpModule结束处理请求");
        }

配置配置文件信息

在web.config中的<configguration>节点下编写

<system.webServer>
    <modules>
      <add name="name" type="HttpModule.Module"/>
    </modules>
  </system.webServer>

创建两个web窗体

窗体1源码
窗体1源码

窗体2源码
窗体2源码

最终实现页面

最终实现的效果页面

Httphandler对象

创建Httphandler类

创建Httphandler类与创建HttpModule类同样

实现IHttpHandler接口

public class Class1 : IHttpHandler
    {
        public bool IsReusable => throw new NotImplementedException();;

        public void ProcessRequest(HttpContext context)
        {
            throw new NotImplementedException();
        }
    }

编写HttpHandler类

public class Class1 : IHttpHandler
    {
    	//设置是否可以重用
        public bool IsReusable => false;

        public void ProcessRequest(HttpContext context)
        {
        	//获取第一次访问的url
            Uri last = context.Request.UrlReferrer;
            //获取本次访问的url
            Uri uri = context.Request.Url;
            //判断主机和端口,是否为盗链
            if (last.Host!=uri.Host||last.Port!=uri.Port)
            {
            	//获取图片
                string pa = context.Request.PhysicalApplicationPath + "sa/mi.jpg";
                //把图潘返回到客户端
                context.Response.WriteFile(pa);
            }
            else
            {
            	//不是盗链则把返回原路径至客户端
               context.Response.WriteFile(context.Request.PhysicalPath);
            }
        }
    }

配置配置文件信息

在web.config中的<configguration>节点下编写

<system.webServer>
    <handlers>
      <add verb="*" path="images/*" type="WebApplication1.Class1" name="na"/>
    </handlers>
  </system.webServer>

创建两个ASP.NETweb应用程序项目

同时每个ASP.NETweb应用程序项目创建一个web窗体,为了效果创建两个ASP.NETweb应用程序项目启动时防止是同一个端口
创建ASP.NET web应用程序

窗体页面源码

  1. 初始网页

初始网页源码

  1. 盗链网页
    盗链网页源码

实现页面效果

最终实现页面效果

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

泽痕

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值