我有一個網頁的兩個下拉列表(StateNames & CityNames)。 我想綁定CityNames取決於所選的StateName。 我寫BindCities()函數來綁定CityNames下拉列表。 通過使用詞典我綁定這兩個下拉列表。調用用戶定義函數從JavaScript
private void BindCity() {
try {
string Action = "BindCity";
int CompanyId = 1;
int StateId = Convert.ToInt32(ddlPresentState.SelectedValue);
Dictionary<int, string> dct = AppBll.BindCityNames(Action, CompanyId, StateId);
ddlPresentCity.DataSource = dct;
ddlPresentCity.DataValueField = "Key";
ddlPresentCity.DataTextField = "Value";
ddlPresentCity.DataBind();
}
catch (Exception) {
throw;
}
}
現在我想從StateNames下拉列表的JavaScript OnChange事件中調用BindCities()函數。 但它不工作。 所以請幫我解決這個問題。 在此先感謝。
顯示你的代碼.. – Madhu
@AnandDhamane編輯的問題。不要在評論中添加詳細信息。 – Ashutosh