I want to use my code behind (C#) to check and see if a user is logged in or not on page load. I assume this is really basic, but I'm still new to .net

This is basically what I want:

if(loggedIn == true){ do something }
link|improve this question

On a side note, when checking if something is true or false and the property is a boolean value, you can just use if (booleanProperty) or if (!booleanProperty). First one is if(true) second is if(false) – Tim B James Jun 17 '11 at 14:08
feedback

5 Answers

up vote 5 down vote accepted

If you are using the built in .net Forms Authentication, then you can use the following

if ( HttpContext.Current.User.Identity.IsAuthenticated){
     do something
}

Make sure you have your settings in the web.config set up for using FormsAuthentication

link|improve this answer
feedback
if (User.Identity.IsAuthenticated)
{
    // do something
}

assuming you're using FormsAuthentication.

If however, you're using a Session based login, you can do a nullable check, just like this:

if (HttpContext.Current.Session["somevalue"] != null)
{
    // do something
}
link|improve this answer
feedback

Check User.Identity.IsAuthenticated property.

link|improve this answer
feedback

Check whether User.Identity.Name is an empty string or not.

link|improve this answer
feedback

If you are using Membership you can just call GetUser() with no arguments. It results the logged in user if the user is logged in.

http://msdn.microsoft.com/en-us/library/fcxcb339.aspx

Membership.GetUser()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.