Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Here's the code by which one authorized user can access another's personalization data:
branch = Profile.GetProfile(userName).Branch;
<Yawn/> That's well documented.
But here is the code by which the authorized user can MODIFY another's personalization data, which is not so well documented:
ASP.HttpProfile profile = Profile.GetProfile(userName);
profile.SetPropertyValue("Branch", branchKey);
profile.Save();