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 }
|
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:
| |||
|
feedback
|
|
If you are using the built in .net Forms Authentication, then you can use the following
Make sure you have your settings in the web.config set up for using FormsAuthentication | |||
|
feedback
|
assuming you're using FormsAuthentication. If however, you're using a Session based login, you can do a nullable check, just like this:
| ||||
|
feedback
|
|
Check | |||
|
feedback
|
|
If you are using http://msdn.microsoft.com/en-us/library/fcxcb339.aspx
| |||
|
feedback
|
if (booleanProperty)orif (!booleanProperty). First one isif(true)second isif(false)– Tim B James Jun 17 '11 at 14:08