Reputation: 4479
I want to implement single sign on in my asp.net web application. Scenario is something like below:
What is the best solution for this?
Upvotes: 0
Views: 881
Reputation: 2321
If you are using Forms Authentication you need to set your forms and machinekey sections in web.config to be identical.
Here is a good link -> Forms Authentication Across Applications
Upvotes: 0
Reputation: 72658
You want to set the Domain property on the cookie object to ".example.com" and it will work for any sub-domain of "example.com".
If you're using ASP.NET's forms authentication, this article is a good place to start to find out all the options for configuring it.
Upvotes: 3