Ответ 1
Вы можете сделать то же самое в MVC:
<script type="text/javascript">
function timedRefresh(timeoutPeriod) {
setTimeout(function() {
location.reload(true);
}, timeoutPeriod);
}
</script>
<body onload="JavaScript:timedRefresh(5000);">
...
</body>
или с помощью метатега:
<head>
<title></title>
<meta http-equiv="refresh" content="5" />
</head>
<body>
...
</body>
или в действии вашего контроллера:
public ActionResult Index()
{
Response.AddHeader("Refresh", "5");
return View();
}