Hi,
i have a usercontrol which contain comboboxes.I have a page which uses master page and also that user control.So how can i find the text and value of combobox.
i have written
i have a usercontrol which contain comboboxes.I have a page which uses master page and also that user control.So how can i find the text and value of combobox.
i have written
var dbMedication =
document.getElementById(
'<%=MedicationControl.FindControl("RadComboBoxMedication").ClientID%>').get_text();//it shows error get_text method not found.
RadComboBoxMedication is id of combo box.
MedicationControl is usercontrol.
Plz help me.