如何在Asp.net中定时器完成时间时重定向到新页面

时间:2015-03-08 11:38:35

标签: c# asp.net sql-server

我正在研究ASP.NET中的在线考试系统。我想在我的项目中使用计时器。时间结束后,应该重定向到新页面并自动保存结果。请帮帮我。

1 个答案:

答案 0 :(得分:0)

你可以在后面的代码中执行此操作:

 this.Head1.Controls.Add(new LiteralControl("<meta http-equiv='refresh' content='time in second ;url=your Url'>"));

或JavaScript中的setTimeOut函数,如下所示:

 setTimeout(function () {
   window.location.href = "Your location";
}, 10000);//After ten seconds it will be redirect to your location