Asp – the best way of handling users session in ASP.Net

asp.net

Any user who logs in needs to provide username, password and domain. For that user a windows identity shall be created on the server side. In this scenario what is the best way to handle user's session across the pages using his identity in ASP.Net?

Best Solution

I'm guessing the username, password, domain is authenticated against an Active Directory? If so, you'll be interested in this article: How To: Use Forms Authentication with Active Directory in ASP.NET 2.0

If you are just using session to 'remember someone is logged in' this will handle it all for you.