RE: MobileFormsAuthentication Login Status
Hi Alex,
You can still use HttpContext.Current.User to determine the login status:
if (HttpContext.Current.User != null &&
HttpContext.Current.User.Identity.IsAuthenticated) {
string userName = HttpContext.Current.User.Identity.Name;
}
Regards,
Walter Wang (wawang@online.microsoft.com, remove 'online.')
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
Date:Wed, 23 May 2007 09:26:32 GMT
Author:
|