同一个ASP.NET页面放置多个UpdatePanel分别刷新的解决办法。.

原文:同一个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可以独自刷新,不会互相影响了!
上一篇:windows 2008 server 服务器远程桌面连接会话自动注销,在服务器上开掉的软件全部自动关闭的解决办法


下一篇:.Net“/”应用程序中的服务器错误 超过了最大请求长度 错误解决办法