Hi Joe, You can grab custom profile porperties like this: DotNetNuke.Entities.Profile.ProfilePropertyDefinition profilePropDef = UserInfo.Profile.ProfileProperties["MyProfileProperty"]
if (profilePropDef != null) string userProfileValue = profilePropDef.PropertyValue; |