Can someone please point me in the right direction as to how to determine if an user is currently logged in?
I am currently using C# in Visual Studio. It came with an default web application example.
I added a bunch of pages, I would like to set them up so they are only visible when an user is logged in already.
You can check the IsAuthenticated property on the Page.Request
HttpRequest.IsAuthenticated
http://msdn.microsoft.com/en-us/library/system.web.httprequest.isauthenticated.aspx