Load Profile object when session starts

  • Thread starter Thread starter ryan.mclean
  • Start date Start date
R

ryan.mclean

Hi all,

Playing with this new profile stuff and I need to load the Profile
object with values when the user's session starts. The profile object
does not seems to be available in the session_start in the global.asax
.. . . is there a good way to handle this?

Thanks for any help you can offer.

Have a nice day,
Ryan
 
I just did this:

If (Profile.LastUpdatedDate.ToShortDateString <> Now.ToShortDateString)
Then
LoadThat Profile
Else
don't load it
End If
 
Back
Top