Groups | Blog | Home
all groups > asp.net security > may 2007 >

asp.net security : Login LoggedIn event and Profile object question


Rusty Hill
5/24/2007 1:27:38 PM
My site does not allow anonymous users. After a user has logged in and been
authenticated I need to access some information in their profile object. I
thought I would do this in the LoggedIn event of the Login object but when
that event fires the user is still not authenticated so the profile is null.

Where and how should I be doing this? Should I be checking the
ProfileModule.MigrateAnonymous Event in the global.asax? Remember I do not
allow anonymous users at all and just want to grab a custom property from
the profile object the moment I know who the user is and have access to
their specific of the profile object. Thank you.

Rusty Hill
5/24/2007 3:38:27 PM
I had to get creative and here is how I solved it:

protected void Login1_LoggedIn(object sender, EventArgs e)
{
// Get the login object
Login login = sender as Login;

// Get the profile for the logged in user
ProfileCommon usersProfile = Profile.GetProfile(login.UserName);

// Go set the session UI culture
if (usersProfile.PreferredUICulture != "")
Session["PreferredUICulture"] = Profile.PreferredUICulture;
}

[quoted text, click to view]

AddThis Social Bookmark Button