Either SelectedIndexChanged or SelectedValueChanged... it doesn't matter which one.The only time it will matter is when you have multiple items within the combo that have the same value... if one is selected and the user selects the other one, then the SelectedValueChanged will not fire because the value didn't change. But since that will rarely happen, then you can really use either one.