Does anyone know how to disable the CascadingDropDown extender from the server-side but retain the display of the selected value? Basically putting a form into read-only mode for review. Currently it is loading the data and the selected value but setting Enabled to False on the DropDownList control has no effect.
MyDropDown.Enabled = False
I also tried adding the disabled attribute to the DropDownList control.
MyDropDown.Attributes.Add("disabled", "disabled")
All other text boxes and drop down lists are disabled properly. Any Ideas?