I would like to trigger the onchange with c# because i can't use js
(Master.FindControl("ComboBox") as CustomComboBox).SelectedValue = foo;
(Master.FindControl("ComboBox") as CustomComboBox).change();
the ".change()" won't work. Is there a way in c# to make it work ?
Thank you for your help.