我在
Ajax更新面板中有一个服务器下拉列表.当我使用鼠标点击一个项目时,它会触发回发,但是当我单击向上/向下箭头来更改条目时,这不会触发.可能是什么原因?
解决方法
试试这个:
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" onKeyUp="this.blur();">
使用onKeyUp =“this.blur();”当一个键被按下时,控件将失去焦点,这将触发onChange事件.