Tagged Questions
2
votes
2answers
423 views
Static files and authentication in ASP.net
Say I have a virtual folder /topFolder/ in IIS7, and in that folder there can be any file that can be displayed in a browser (xml, html, swf, doc etc - typically "unmanaged" resources from the IIS ...
1
vote
0answers
121 views
How do I get a IHttpHandler to do authentication properly?
I have some IHttpHandler implementations where they may optionally have authentication applied to them.
I originally rolled my own Basic authentication but would now like to use IIS's capabilities so ...
1
vote
2answers
149 views
Can you programatically define ASP.NET configuration?
Is it possible to define a large portion, if not the entire, web.config of an ASP.NET application in code? If so, how? Would you use an IHttpModule? In the same vein, can you resolve an IHttpHandler ...
0
votes
1answer
24 views
Stopping Non-Users from Accessing Static Resources
I'm working on restricting access of static PDF files to only logged-in users. I only want to use a server-side redirect from the resource when a request comes that doesn't have the proper ...