我的asp.net页面就是这样
复选框 清单 组合框 图表
图表检索取决于CheckBox状态
我用
包裹了Chart复选框 清单 组合框 图表
并已使用
<Triggers>
<asp:AsyncPostBackTrigger ControlID="cbx1" EventName="CheckedChanged" />
</Triggers>
但是页面仍然刷新,因为该复选框不是updatepanel的一部分
有没有办法将单独的控件包装在1个updatepanel中?
类似这样的东西
<asp:updatepanel id="U1" runat="server">
Checkbox
</asp:updatepanel>
List
Combobox
<asp:updatepanel id="U1" runat="server">
Chart
</asp:updatepanel>