London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Fetching PersonalizedData custom property...

Vote:
0
How can I fetch a custom created PersonalizedData property from a user that is NOT current, e.g PersonalizedData.[""] ?
#12412
Oct 27, 2005 19:10
Vote:
0
well...managed it by doing like this - PersonalizedData pd = new PersonalizedData(); pd = PersonalizedData.Load(usr.ID); PropertyDataCollection pdC = pd.GetProperties(); for (int i=0; i < pdC.Count; i++) { Response.Write(pdC[i].Name + ":" + pdC[i].Value + "
") }
#14226
Oct 27, 2005 20:56
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.