gpt4 book ai didi

asp.net - 选中项目时,UpdatePanel 内的复选框列表会触发完整回发

转载 作者:行者123 更新时间:2023-12-04 22:49:23 25 4
gpt4 key购买 nike

所以我有这个复选框列表,我想为里面的元素实现一个全选功能。我将它放在 UpdatePanel 中,但每次单击一个项目时,都会重新加载整个页面。这是我的代码:

 <asp:UpdatePanel ID="CBLPanel" runat="server" UpdateMode="Conditional"     ChildrenAsTriggers="false">
<ContentTemplate>
<div class="LeftAligned">
<asp:Label ID="FilterLabel" runat="server" Text="Filter by:" />
<asp:DropDownList runat="server" ID="FilterDDL" AutoPostBack="true" OnSelectedIndexChanged="FilterDDL_SelectedIndexChanged" />
<asp:ImageButton ID="FB" runat="server" ImageUrl="~/images/filter.png" AlternateText="VALUE"
CssClass="filter_button" OnClick="FB_Click" />
<div onmouseout="javascript:bMouseOver=false;" onmouseover="javascript:bMouseOver=true;"
class="filter_div">
<asp:CheckBoxList AutoPostBack="true" ID="FilterCheckBoxList" ClientIDMode="Static"
runat="server" CssClass="filter_checklist collapsed" OnSelectedIndexChanged="FilterCheckBoxList_Selected">
</asp:CheckBoxList>
</div>
</div>
</ContentTemplate>
</asp:UpdatePanel>

我虽然应该将 ChildrenAsTriggers 设置为 false,这样我只会从代码中更新,但它似乎不起作用。

最佳答案

这看起来像一个熟悉的 .NET Bug。在 CheckBoxList 上设置 ClientIDMode=Auto 应该可以修复它

关于asp.net - 选中项目时,UpdatePanel 内的复选框列表会触发完整回发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11260567/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com