ASP.NET Dropdownlist selectedindexchanged事件未在向上/向下箭头上触发

前端之家收集整理的这篇文章主要介绍了ASP.NET Dropdownlist selectedindexchanged事件未在向上/向下箭头上触发前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 Ajax更新面板中有一个服务器下拉列表.当我使用鼠标点击一个项目时,它会触发回发,但是当我单击向上/向下箭头来更改条目时,这不会触发.可能是什么原因?

解决方法

试试这个:
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" 
OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" onKeyUp="this.blur();">

使用onKeyUp =“this.blur();”当一个键被按下时,控件将失去焦点,这将触发onChange事件.

原文链接:https://www.f2er.com/aspnet/247726.html

猜你在找的asp.Net相关文章