Hi, I have a dropdownlistbox in an update panel. I set the selected value in the code behind, I can step through it, correct values get set in other dependent controls based on the seleced value set but UI does not reflect change to the selected value of the drop down list. Has anybody experienced the same issue. Here is the code for it
If serviceCenterId <> String.Empty Then
ddlServiceCenter.SelectedValue = serviceCenterId
Else
ddlServiceCenter.SelectedValue =
Me.DefaultServiceCenterId
End If