Click here to Skip to main content
Click here to Skip to main content

Limit Access Rights to download a file in ASP.NET

By , 22 Feb 2010
 
If you want to keep a downloadable file private to end users / customers with their username and password, everyone suggests not to put the file in the web root directory, and gives you a suggestion to change IIS settings and use Response.TransmitFile. When you are not having access to the server, then it will be a difficult task for you.
 
Where you are not having access to the server and you are permitted to upload files under your web directory only, here are some simple steps for you to restrict access to files with username and password.
 
Say file myfile.zip is to be downloaded with a usersname/password validation.
 
Step 1: Rename myfile.zip with myfile.config.
Step 2: Create a page to enter username and password.
Step 3: If username and password are valid, then use the below code to transfer the file.
 
        if (isValidUser)
        {
            Response.Clear();
            Response.ContentType = @"application/setup";
            Response.AppendHeader(@"Content-Disposition", ("attachment; filename=myfile.zip"));
            Response.TransmitFile(@"myfile.config");
            Response.End();
        }
        else
        {
            // prompt the web user with some message of access privileges
        }
 

No server access is required to implement this trick. The only workaround in this is that ASP.NET will not allow access to files with extension .config.
 
You are done.
Any suggestions are highly appreciated.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Ravi LVS
India India
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionAbsolute BOGUS / Rubishmembernahid47712 Jul '12 - 20:52 
Absolute bogus article i've read in a long long time.
STOP POSTING BOGUS article just to count points.
GeneralMy vote of 5memberNourBerro24 May '12 - 3:20 
simple easy and very usfull

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 22 Feb 2010
Article Copyright 2010 by Ravi LVS
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid