我有一个国家和州的下拉列表。
虽然第一次绑定项目不是添加但在第二次刷新页面中然后它在下拉值中进行选择。
代码:
不是在页面加载一些按钮点击事件触发然后需要显示相应的值。
this.BindCountries();
ddlCountry.SelectedItem.Value = objAddressResponse.Country;
this.BindStates(objAddressResponse.Country);
ddlState.SelectedItem.Value =
ddlState.Items.Count > 1 ? objAddressResponse.State : "";
如何在第一次绑定本身?