.NET Forms Authentication: How to limit access to resources like pdf files to authenticated users only - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T13:08:54Zhttp://stackoverflow.com/feeds/question/272447http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/272447/net-forms-authentication-how-to-limit-access-to-resources-like-pdf-files-to-aut2.NET Forms Authentication: How to limit access to resources like pdf files to authenticated users onlykristof2008-11-07T15:32:55Z2008-11-07T17:33:07Z
<p>I am using .net2.0 and IIS6. </p>
<p>When using .net Forms Authentication: How to limit access to resources like pdf files to authenticated users only; so in order to access a file say mysite.com/mydoc.pdf they would have to be authenticated first (go through the login page)</p>
<p>It seems that by default only the .aspx pages are protected. E.g. to include the .html, I had to follow the steps described <a href="http://forums.asp.net/p/1184547/2096319.aspx" rel="nofollow">here</a>.</p>
<p><strong>EDIT</strong></p>
<p>Thanks guys for very quick replies, the <a href="http://stackoverflow.com/questions/272447/net-forms-authentication-how-to-limit-access-to-resources-like-pdf-files-to-aut#272455">answer by Keltex</a> worked perfectly for me as I needed a quick fix for a demo system. </p>
<p>Other answers are very interesting as well and they will be useful when dealing with the production system. </p>
<p>You are more then welcome to post other answers</p>
http://stackoverflow.com/questions/272447/net-forms-authentication-how-to-limit-access-to-resources-like-pdf-files-to-aut/272455#2724553Answer by Keltex for .NET Forms Authentication: How to limit access to resources like pdf files to authenticated users onlyKeltex2008-11-07T15:34:43Z2008-11-07T15:34:43Z<p>You have to configure IIS to process wildcard extensions. Thus .pdf & .html extensions will be authenticated. Here's how for IIS6:</p>
<p><a href="http://professionalaspnet.com/archive/2007/07/27/Configure-IIS-for-Wildcard-Extensions-in-ASP.NET.aspx" rel="nofollow">http://professionalaspnet.com/archive/2007/07/27/Configure-IIS-for-Wildcard-Extensions-in-ASP.NET.aspx</a></p>
http://stackoverflow.com/questions/272447/net-forms-authentication-how-to-limit-access-to-resources-like-pdf-files-to-aut/272463#2724632Answer by Kibbee for .NET Forms Authentication: How to limit access to resources like pdf files to authenticated users onlyKibbee2008-11-07T15:38:36Z2008-11-07T15:38:36Z<p>You could store the files on a directory that is not accessible directly via the web, and then the users have to visit an ASPX page with an ID pointing to the file they need to download. At that point, you stream the file out them .</p>
http://stackoverflow.com/questions/272447/net-forms-authentication-how-to-limit-access-to-resources-like-pdf-files-to-aut/272483#2724830Answer by John Humenik for .NET Forms Authentication: How to limit access to resources like pdf files to authenticated users onlyJohn Humenik2008-11-07T15:41:38Z2008-11-07T15:41:38Z<p>Do you have anonymous access turned off? if you just have Integrated Windows auth, it should block all access if you setup your web config with these settings</p>
<p>
</p>
http://stackoverflow.com/questions/272447/net-forms-authentication-how-to-limit-access-to-resources-like-pdf-files-to-aut/272639#2726392Answer by WestDiscGolf for .NET Forms Authentication: How to limit access to resources like pdf files to authenticated users onlyWestDiscGolf2008-11-07T16:35:16Z2008-11-07T16:35:16Z<p>Create a httphandler which checks the authenticated user before streaming the document out to the browser. Then you can set the link on the page to point at the hander with a document id instead of the file directly.</p>
<p>Once this is done the document can be stored near enough anywhere you choose, being the file system or database or even encoded into an xml file if you want. This is useful for when you want to move storage location but don't want to have to update all the links in the web application.</p>
<p>Useful links:
<a href="http://msdn.microsoft.com/en-us/library/system.web.ihttphandler" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.web.ihttphandler</a></p>