One site under both windows and forms authentication

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What would be the best way implement a site that handles both windows authenticated users and fallback to forms authentication for unathenticated users. Roll my own? Is there an option without additional development? Like creating a new project, and copying the apx pages, and referencing the other project. But I still would will have to change all my namespace declarations
 
MiguelNavarro said:
What would be the best way implement a site that handles both windows authenticated users and fallback to forms authentication for unathenticated users. Roll my own? Is there an option without additional development? Like creating a new project, and copying the apx pages, and referencing the other project. But I still would will have to change all my namespace declarations.

Using both forms and integrated authentication on an ASP.NET website is
not simple, but there's a great recent article on how to pull it off:

http://msdn.microsoft.com/library/en-us/dnaspp/html/mixedsecurity.asp
 
Back
Top