<asp:RadioButtonList ID="rblHighestDegree" runat="server" AutoPostBack="true" onselectedindexchanged="rblHighestDegree_SelectedIndexChanged"> <asp:listitem Runat="server" Text="Master's Degree" Selected="True" /> <asp:listitem Runat="server" Text="Doctorate" /> </asp:RadioButtonList>
在上面的代码示例中,当用户从默认选择(例如,“Master’s Degree”)切换到不同选项(例如,“Doctorate”)时,则触发SelectedIndexChanged事件.然后,如果用户改变主意,然后选择原始默认选项,则再次触发SelectedIndexChanged事件.这完全符合预期和预期.
我有第二个控件,根据上面的选择启用或禁用代码隐藏…
<asp:ScriptManager ID="scriptmanager1" runat="server" /> <asp:UpdatePanel ID="updatepanel1" runat="server"> <ContentTemplate> <asp:RadioButtonList ID="rdlYearsOfStudy" runat="server" Enabled="false"> <asp:listitem Runat="server" Text="Less than 3 years" /> <asp:listitem Runat="server" Text="3 - 4 years" /> <asp:listitem Runat="server" Text="5 - 6 years" /> </asp:RadioButtonList> </ContentTemplate> <Triggers> <asp:AsyncPostBackTrigger ControlID="rblHighestDegree" EventName="SelectedIndexChanged" /> </Triggers> </asp:UpdatePanel>
只有在我将第二个控件放在ASP.Net AJAX UpdatePanel中才能启用异步回发(如上所示)之后,我才会遇到这个问题.一旦我这样做,原始的RadioButtonList控件将仅在我选择当用户到达页面时未默认选择的ListItem时回发.如果用户随后选择原始默认选择,则不会发生回发.
为了澄清,如果我回发而不将适用的第二个控件放在ASP.Net AJAX UpdatePanel中,那么无论用户选择哪个RadioButtonList ListItem,SelectedIndexChanged都可以工作.另一方面,在将控件放在UpdatePanel中以应用AsyncPostBackTrigger之后,回发仅针对非默认ListItem的选择.
可能相关的更多信息是我使用Microsoft Visual Studio 2008进行编码,而我正在使用的UpdatePanel控件是Microsoft AJAX Libary(不是ASP.NET AJAX Control Toolkit)的一部分.
我非常感谢有关如何使ASP.Net AJAX工作的任何见解,以便当用户选择RadioButtonList中的默认或非默认ListItem时,我可以触发SelectedIndexChanged事件.为了记录,我尝试在page_load事件中设置RadioButtonList默认选择,但它没有帮助.
在此先感谢您的帮助!
解决方法
$("#rbl input[checked]").click(function (e) { var id = e.target.id.replace('_','$'); setTimeout(function () { __doPostBack(id,""); },0); });
但是,即使ajax调用现在按预期工作,服务器端代码仍然没有执行selectedIndexChanged处理程序.
认为这可能是因为服务器知道默认选择是什么(并且)并且看到发布的选择是相同的,因此认为所选索引没有改变,因此没有执行处理程序.
然后我想当选择其中一个无线电时,服务器应该记住通过视图状态.这让我记得我在radiobuttonlist的容器上有viewstatemode =“Disabled”.所以我在radiobuttonlist上设置了viewstatemode =“Enabled”,它现在按预期工作.