ajax タイマーを実装したいオンライン試験 Web サイトを作成しました。私はコードを書きましたが、問題は、タイマーの秒数を10秒と仮定してセッションを初期化していることです。ページが読み込まれると、6 秒から表示されます。そのため、ページのプリレンダリングが完了すると、タイマーがすでに開始されているように感じます。そのため、10 秒ではなく 6 秒から表示されます
これがコードです。10秒から表示する方法を誰かが提案できれば、それは素晴らしいことです。
aspx ファイル コード
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Timer ID="Timer1" runat="server" Interval="1000" OnTick="Timer1_Tick">
</asp:Timer>
<asp:Label ID="Label1" runat="server" Text="Remaining Time :"></asp:Label> <asp:Label ID="lblTime" runat="server" Text=""></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
</div>
</form>
csファイルコード
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Session["time"] = DateTime.Now.AddSeconds(10);
}
}
protected void Timer1_Tick(object sender, EventArgs e)
{
if (lblTime.Text != "TimeOut!")
{
TimeSpan time1 = new TimeSpan();
time1 = (DateTime)Session["time"] - DateTime.Now;
if (time1.Seconds <= 0)
{
lblTime.Text = "TimeOut!";
ScriptManager.RegisterStartupScript(this, this.GetType(), "StartUpScript1", "alert('hello')", true);
}
else
{
lblTime.Text = time1.Hours.ToString("#00") + ":" + time1.Minutes.ToString("#00") + ":" + time1.Seconds.ToString("#00");
}
}
else
{
//Timer1.Interval = 0;
}
}