天天看点

ASP.NET DropDownList 中SelectedIndexChanged事件的使用

DropDownList1.AutoPostBack 属性

今天写代码给DropDownList1添加DropDownList1_SelectedIndexChanged事件,在运行测试时发现DropDownList1的index发生改变后DropDownList1_SelectedIndexChanged没有执行,

上网查了一下才知道AutoPostBack要设置成true,才会执行DropDownList1_SelectedIndexChanged事件;

AutoPostBack属性的解释是:"当选定内容更改后,自动回发到服务器",当AutoPostBack的属性为false时系统不会自动回发到服务器,自然DropDownList1_SelectedIndexChanged也不会执行。

ASP.NET DropDownList 中SelectedIndexChanged事件的使用