更新面板控件不能在正常模式下工作,即當我在調試模式下瀏覽時沒有進行調試時,它工作得很好。UpdatePanel只能在調試模式下工作
我的代碼如下 -
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<asp:UpdatePanel ID="UpdatePanel1" UpdateMode="Conditional" runat="server">
<ContentTemplate>
<asp:Timer runat="server" id="Timer1" Interval="5000"></asp:Timer>
<%-- web content here --%>
</ContentTemplate>
</asp:UpdatePanel>
請建議在正常模式下上述的工作無需調試。 在此先感謝。
我不願刷新整個頁面。我的要求是每隔10秒從數據庫中獲取更改的屬性而不刷新它。 –