I use VS 2008, ASP.NET 3.5, C#. I have a web app that uses forms authentication. Everything works fine,
it is launched on my dev machine with the Url
http://localhost/myapp. (A default aspx is launched).
Now I need to create one or two web pages which will be accessed without the need of any authentication.To accomplish this I created
a folder named IntakeDirect under the main application’s root folder, and put the aspx file in there. I also added another web.config in that folder with authorization <allow users="*" />. So effectively this becomes its own app.
Go to the complete details ...