I have a page with several linked comboboxes - the user is allowed to save the selected values as their default selections, etc. What I need to so - say from the country/cities model - is after they have saved the US and Los Angeles as their country state selections - upon entry/load back into the page - set the selected values accordingly - everythign is working except the last part - when I set the below - the country selection works - but the cities cb does not set selected value to "Los Angeles" - it just seems to hang on "Loading Citites" - but when I expand the combobox - I see the cities loaded - just not selected to "Los Angeles"




this.Countries.SelectedItem.Value = "US";



this.Cities.SelectedItem.Value = "Los Angeles";