我有一个带有返回当前日期和时间的函数的母版页,我的问题是,每次我的计时器滴答,正在调用blockUI ..有没有办法可以在像timer1_tick这样的特定事件中禁用它?提前谢谢。
母版:
<asp:ScriptManager runat="server" ID="MainScriptManager" AsyncPostBackTimeOut="36000"/>
<asp:UpdatePanel runat="server" ID="updatepanel">
<ContentTemplate>
<%=GetDateTime()%>
<asp:Timer ID="Timer1" runat="server" Interval="1"></asp:Timer></td>
</ContentTemplate>
</asp:UpdatePanel>
代码隐藏:
public static string GetDateTime()
{
string currentDateTime = DateTime.Now.ToString();
return currentDateTime;
}
protected void Timer1_Tick(object sender, EventArgs e)
{
GetDateTime();
}