asp.NetHttpHandler画像防犯チェーンを実現

1585 ワード

Step.1:ファイルを作成します.cs、コードは以下の通りです.
 
  
using System;
using System.Web;

namespace CustomHandler{
public class JpgHandler : IHttpHandler{
public void ProcessRequest(HttpContext context){
//
string FileName = context.Server.MapPath(context.Request.FilePath);
// UrlReferrer ,
if (context.Request.UrlReferrer.Host == null){
context.Response.ContentType = "image/JPEG";
context.Response.WriteFile("/error.jpg");
}else{
// UrlReferrer ,
if (context.Request.UrlReferrer.Host.IndexOf("yourdomain.com") > 0){
context.Response.ContentType = "image/JPEG";
context.Response.WriteFile(FileName);
}else{
context.Response.ContentType = "image/JPEG";
context.Response.WriteFile("/error.jpg");
}
}
}

public bool IsReusable{
get{ return true; }
}
}
}

Step.2このファイルをコンパイルする
 
  
csc /t:library /r:System.Web.dll CustomHandler.cs

Step.3コンパイルされたCustomHandler.dllはサイトのBinディレクトリにコピーされます.
Step.4 Web.ConfigにこのHandlerを登録します.
 
  






はい、手順に従って自分でテストしてもいいです.ここでは説明しません.