0

我在母版页中有一个 UpdatePanel,在内容页中有另一个。当我使用 Timer 刷新母版页时,具有自己的 Timer 的内容页面也会更新。

问题1:如何防止母版页中的刷新更新内容页?

问题2:内容页的Timer时间间隔,设置为60000。当页面加载完毕,我要等60000才能看到显示的GridView数据。如何让它在页面加载后立即显示数据,然后每 60000 刷新一次数据?

Site.Master:

 <asp:ScriptManager ID="ScriptManagerMouseRegion" runat="server"></asp:ScriptManager>

 <asp:Timer runat="server" id="SiteMasterTimer" Interval="10000" OnTick="SiteMasterTimer_Tick"></asp:Timer> 

 <asp:UpdatePanel ID="UpdatePanelMouseRegion" runat="server">
                <ContentTemplate>  
// mouse region to be updated

默认.aspx:

<asp:ScriptManagerProxy ID="DisplayResultsScriptManager" runat="server">
</asp:ScriptManagerProxy>

<asp:Timer ID="DisplayResultsTimer" Interval="60000" Enabled="true" runat="server" OnTick="DisplayResultsTimer_Tick"> 
</asp:Timer> 

<asp:UpdatePanel ID="DisplayResultsUpdatePanel" runat="server" >
   <Triggers>
        <asp:AsyncPostBackTrigger ControlID="DisplayResultsTimer" />  
   </Triggers>

    <ContentTemplate>

    // GridView to be updated
4

1 回答 1

0

对于 updatePanels,将 UpdateMode 设置为Conditional

<asp:UpdatePanel ID="UpdatePanelMouseRegion" runat="server" UpdateMode="Conditional">

有关详细信息:使用多个 UpdatePanel 控件创建简单的 ASP.NET 页面

于 2013-11-07T15:39:06.593 回答