ASP.NET 2.0 #6: Personalization
5th Sep 2005, 14:47 GMT
Here's the code by which one authorized user can access another's personalization data: branch = Profile.GetProfile(userName).Branch; 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();