ASP.NET Authentication Question
Roy wrote:
I can't seem to find an answer to this:
Is it possible to use the <authentication> tag in web.config to allow some of the pages in your site to be non-secure, meaning users can browse them without being redirected to the login page?
Roy what I do myself is to put everything to be secure in a folder, duplicate the web config in this folder and modify the <authentication> tags.
The main web config of your application has to allow everybody.
It works for me !