Asp.net ошибка: тег сервера не очень хорошо сформирован в For (var I = 1; оператор
function changeSystemDDLIndex() { // Select the Site in SitesDDL = CustomerSiteIdOfSystem // Save the System ID into a hidden variable var systemsDDL = document.getElementById('ddlSystems'); var system = systemsDDL.options[systemsDDL.selectedIndex].value; var sitesDDL = document.getElementById('ddlSites'); var hidCustomerSiteId = document.getElementById("hdnCustomerSiteId"); var hidCustomerSystemId = document.getElementById("hdnCustomerSystemId"); if (systemsDDL.options[systemsDDL.selectedIndex].value == '') { // if System = N/A, Customer_Site_Id = '' then SitesDDL.SelectedIndex = 0 (N/A) sitesDDL.options[0].selected = true; // Set new values of hidden variables hidCustomerSiteId.value = ''; hidCustomerSystemId.value = ''; } else { var isFound = false; var CustomerSiteIdOfSystem = systemsDDL.options[systemsDDL.selectedIndex].attributes['Customer_Site_Id'].value; // Find the Customer_Site_Id in SitesDDL options and set it for (var i = 1; i < sitesDDL.options.length; i++) { if (sitesDDL.options[i].value == CustomerSiteIdOfSystem) { sitesDDL.options[i].selected = true; isFound = true; } else { sitesDDL.options[i].selected = false; } } if (isFound == false) { sitesDDL.options[0].selected = true; sitesDDL.options[0].disabled = false; } // Set new values of hidden variables hidCustomerSiteId.value = CustomerSiteIdOfSystem; hidCustomerSystemId.value = system; } return; }
Что я уже пробовал:
Я пробовал разные простой для отчетности. Я пробовал использовать разные .Чистая целевая структура. Я также попытался добавить расширение "Аякс", элемента управления scriptmanager.
Mehdi Gholam
Проверьте свой html на соответствие закрытия тегов.
Karthik_Mahalingam
после разметки