SelectedIndexChanged will not fire if the item you are trying to select is already selected. If "abc" is the value selected automatically by just loading the list from the selection of the first DD control, then your second SelectedItem assignment will produce no change in the index of the second DD control, and therefore there is no SelectedIndexChanged event. Without knowing much of your design or code, I'll suggest that a change in selection of dropdown i forces no selected item in dropdown i + 1 (where i in [1, 2]). MCP- Marked As Answer byKira QianMSFT, ModeratorFriday, September 18, 2009 9:39 AM
-
|