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