Good afternoon --
I'm trying to develop one ASP.NET application in Visual Basic that allows anonymous access to some portions but allows Windows Authentication and/or Forms-based Authentication for the secure sections. More specifically, if someone enters the application,
the application should try to use Windows Authentication to create the authentication cookie. If that's not possible, the user is provided anonymous access until such time as they request to log into the application, when the user is presented a login
form.
I'm finding no help from Google. I'm prepared to use web.config to secure folders or individual pages as needed.
What I need is:
- Is this even possible?
- What documentation is available to show me what I need to code?
- Are there terms I should be using that will aid my search of MSDN/Google?
- Is there good documentation to explain how .NET maintains authentication (cookie or cookieless) that will help me understand the process?
Thanks,
Michael