码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2014-04-29 16:41:45      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   width   

原文:同一个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分别刷新的解决办法。.,码迷,mamicode.com

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

标签:style   blog   http   color   os   width   

原文地址:http://www.cnblogs.com/lonelyxmas/p/3699516.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!