1

我似乎无法准确找到我需要的东西,所以我会问。

我有一个页面将使用 ASP:Updatepanel 和 timer_tick 事件每隔 5-10 分钟左右自动更新一次。我只是在寻找类似以下内容的消息:

    Last refresh was at:
    <script>document.write(document.lastModified);</script>

或类似的东西。有什么建议么?

4

2 回答 2

0

Label尝试使用在服务器加载页面时更新的 ASP.NET 服务器控件(即),如下所示:

标记:

<asp:UpdatePanel>
    ...
    <asp:Label id="LabelLastUpdated" runat="server" />
</asp:UpdatePanel>

代码隐藏:

Sub Page_Load(ByVal Sender As System.Object, ByVal e As System.EventArgs)
    ' Do update of data here and set last updated label to current time
    LabelLastUpdated.Text = "Last refresh was at: " & DateTime.Now.ToString("F")
End Sub

注意:这"F"是完整的日期/时间模式(长时间)。阅读标准日期和时间格式字符串以获取更多信息。


更新:

要使用这是一个母版页场景,其中任何内容页面刷新都会导致标签更新,然后试试这个:

母版页的标记:

<html>
    <head>

    </head>
    <body>
        ... Existing content ...
        <asp:Label id="LabelLastUpdated" runat="server" />
    </body>
</html>

母版页的代码隐藏:

Sub Page_Load(ByVal Sender As System.Object, ByVal e As System.EventArgs)
    ' Do update of data here and set last updated label to current time
    LabelLastUpdated.Text = "Last refresh was at: " & DateTime.Now.ToString("F")
End Sub

对于您希望内容页面告诉母版页更新的母版页方案,请尝试以下操作:

母版页的标记:

<html>
    <head>

    </head>
    <body>
        ... Existing content ...
        <asp:Label id="LabelLastUpdated" runat="server" />
    </body>
</html>

母版页的代码隐藏:

Sub UpdateLastUpdatedLabel()
    ' A content page is telling the last updated label to be set 
    ' to the current time
    LabelLastUpdated.Text = "Last refresh was at: " & DateTime.Now.ToString("F")
End Sub

在内容页面的代码隐藏中:

Page_Load您希望用作更新母版页标签的触发器或任何其他事件中,请执行以下操作:

' Get a reference to the master page
Dim masterPage = DirectCast(Page.Master, YourMasterPageClassName)

' Now you can call the master page's UpdateLastUpdatedLabel method
' which will update the label's text to the current date/time
masterPage.UpdateLastUpdatedLabel()
于 2013-11-13T17:57:03.797 回答
0

请尝试以下代码,该代码将定期更新

在 aspx 页面中:

<asp:ScriptManager runat="server" id="ScriptManager1">
</asp:ScriptManager>
<asp:UpdatePanel runat="server" id="UpdatePanel1">
  <ContentTemplate>
    <asp:Timer runat="server" id="Timer1" Interval="10000" OnTick="Timer1_Tick"></asp:Timer>
   <asp:Label runat="server" Text="Page not refreshed yet." id="LabelLastUpdated">
   </asp:Label>
  </ContentTemplate>
</asp:UpdatePanel>

并在文件后面的代码中添加以下代码:

    protected void Timer1_Tick(object sender, EventArgs e)
    {
        LabelLastUpdated.Text = "Last Modified at: " +DateTime.Now.ToLongTimeString();
    }
于 2013-11-13T18:04:46.557 回答