我已经尝试过在网页上花费的时间。现在我想跟踪用户在pdf上花费的时间。 我使用的代码如下:
<asp:Timer ID="Timer1" runat="server" Interval="1000" ontick="Timer1_Tick" />
protected void Timer1_Tick(object sender, EventArgs e)
{
hid_Ticker.Value = TimeSpan.Parse(hid_Ticker.Value).Add(new TimeSpan(0, 0, 1)).ToString();
lit_Timer.Text = "Time spent on this page: " + hid_Ticker.Value.ToString();
}