table-profiles

Is it possible to access a profile without updating LastActivityDate?

In asp.net (using MVC, but this happens in regular too) Profile.GetProfile(username); will update the LastActivityDate for that user. This is not intended when someone else is viewing that user's profile. In the membership class you can specify whether to update this date with a second param, like so: Membership.GetUser(username, fa...