Asp.net HttpHandler implements image anti-leech Protection

Source: Internet
Author: User

Step 1: Create the CustomHandler. cs file. The Code is as follows:
Copy codeThe Code is as follows:
Using System;
Using System. Web;

Namespace CustomHandler {
Public class JpgHandler: IHttpHandler {
Public void ProcessRequest (HttpContext context ){
// Obtain the physical path of the file server
String FileName = context. Server. MapPath (context. Request. FilePath );
// If UrlReferrer is empty, a default anti-leeching image is displayed.
If (context. Request. UrlReferrer. Host = null ){
Context. Response. ContentType = "image/JPEG ";
Context. Response. WriteFile ("/error.jpg ");
} Else {
// If UrlReferrer does not contain the host domain name of your website, a default anti-leeching image is displayed.
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 compile this file
Copy codeThe Code is as follows:
Csc/t: library/r: System. Web. dll CustomHandler. cs

Step.3 copy the compiled mmhandler. dll to the Bin directory of the site.
Step 4 register the Handler in Web. Config.
Copy codeThe Code is as follows:
<System. web>
<HttpHandlers>
<Add path = "*. jpg" verb = "*" type = "CustomHandler. JpgHandler, CustomHandler"/>
</HttpHandlers>
</System. web>

OK. You can test it by step. I will not go into details here.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.