How do i change the value of the dropdownlist that has its data set via the datasource
ddlContacts.DataSource = Data;
ddlContacts.DataBind();
I have tried this but does not work:
$('#<%= rbDepartment.ClientID %>').change(function() {
if ($("input[@name=GroupName]:checked").val() == "IS") {
$('#ddlContactType').val('AM');
}
});