如何在MVC4中使用tick事件。在网页中我使用这个:
protected void Timer1_Tick(object sender, EventArgs e)
{
}
它会在300,000个时间间隔后重新加载页面。我是MVC的新手。我正在使用剃须刀引擎。
答案 0 :(得分:1)
为什么要服务器端?
您可以使用Meta Refresh:
<!-- Refresh after 30 seconds -->
<meta http-equiv="refresh" content="30">
或者,如果您愿意,可以使用Javascript:
<script>
setTimeout(function(){
window.location.reload();
}, 30e3); // 30 seconds
</script>