同一个ASP.NET页面放置多个UpdatePanel分别刷新的解决办法。.
Posted sky110
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了同一个ASP.NET页面放置多个UpdatePanel分别刷新的解决办法。.相关的知识,希望对你有一定的参考价值。
ScriptManager添加EnablePartialRending属性
<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true"> </asp:ScriptManager>
所有的UpdatePanel需要设置UpdateMode="Conditional":
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional"> <ContentTemplate> </ContentTemplate> <Triggers> <asp:AsyncPostBackTrigger ControlID="" EventName="Click" /> </Triggers> </asp:UpdatePanel>
其他操作是一样,这样,在同一个页面上的多个UpdatePanel可以独自刷新,不会互相影响了!
以上是关于同一个ASP.NET页面放置多个UpdatePanel分别刷新的解决办法。.的主要内容,如果未能解决你的问题,请参考以下文章
具有多个路由参数的 ASP.NET Core Razor 页面层次结构