EntityFramework的HttpModule和HttpHandler对象
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;
- HttpHandler结束处理请求后触发的事件
context.EndRequest += Context_EndRequest;
为处理请求之前、之后附加信息
- 为处理请求之前附加信息
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源码
窗体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应用程序项目启动时防止是同一个端口
窗体页面源码
- 初始网页
- 盗链网页