Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个下拉列表,第一个如果我选择国家/地区,另一个会填充相应的州,但我想将第二个 DDL 变灰并显示一条消息,例如选择其中的州。我怎样才能做到这一点?我没有为此使用 AJAX。
为什么不在服务器端暂时禁用它?
ddl2.Enabled = false;
或者最好这样做,在第一次更改时,检查状态,如果选择了 smth,则启用辅助 ddl。
ddl1_OnSelectedIndexChanged(object sender....) { if (ddl1.SelectedIndex != 0) ddl2.Enabled = true; }