Friday, August 8, 2008

Updating UserProfile Property of type ChoiceList

before updating the “ChoiceList” set the “MaximumShown” property to a higher value (depends on how many items you are adding)...
PropertyCollection props = m_mngr.Properties;


Property location = props.GetPropertyByName("CountryList");

Location.MaximumShown = Location.MaximumShown +1;

more

No comments: