Anti-leech download Control

Source: Internet
Author: User

Disable the client ie from downloading files through URL? Only files can be downloaded from the specified Download Page

Only requests transferred from this website can be downloaded. You can directly enter an address in the address bar and cannot download it.

1. Do not use links. Use the write-back stream method. Only click the page button to activate download.

Private void filedownload (string downpath)
{
String fullfilename = server. mappath (downpath );
Fileinfo downloadfile = new fileinfo (fullfilename );
Response. Clear ();
Response. clearheaders ();
Response. Buffer = false;
Response. contenttype = "application/octet-stream ";
Response. appendheader ("content-disposition", "attachment; filename =" + httputility. urlencode (downloadfile. fullname, system. Text. encoding. utf8 ));
Response. appendheader ("Content-Length", downloadfile. length. tostring ());
Response. writefile (downloadfile. fullname );
Response. Flush ();
Response. End ();
}
 

2. Add a hidden domain on the previous page. If the visitor copies the address string, the hidden parameters are not copied. Check the hidden parameters on the download page.

<HTML>

<Body>

<Form>

<Input id = "down" name = "down" type = "hidden" value = "down"/>

</Form>

</Body>

</Html>

 

Dowload page

If (reuquest ["down"] = NULL)

Return;

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.