asp.net HttpHandler 이미지 도 난 방지 체인 실현

Step.1:파일 CustomHandler.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 는 웹 config 에 이 Handler 를 등록 합 니 다
 
<system.web>
<httpHandlers>
<add path="*.jpg" verb="*" type="CustomHandler.JpgHandler, CustomHandler" />
</httpHandlers>
</system.web>
OK,여러분 은 절차 에 따라 스스로 테스트 할 수 있 습 니 다.여 기 는 군말 하지 않 겠 습 니 다.

좋은 웹페이지 즐겨찾기