32

In webforms I'd do

    <script type="text/JavaScript">
    function timedRefresh(timeoutPeriod) {
        setTimeout("location.reload(true);", timeoutPeriod);
    }
    </script>

    <body onload="JavaScript:timedRefresh(5000);">

or codebehind Page_Load

Response.AddHeader("Refresh", "5");

Question How to make the screen refresh every 5 seconds in ASP.NET MVC3

Dave Mateer
  • 6,348
  • 15
  • 72
  • 119

1 Answers1

86

You could do the same in MVC:

<script type="text/javascript">
function timedRefresh(timeoutPeriod) {
    setTimeout(function() {
        location.reload(true);
    }, timeoutPeriod);
}
</script>
<body onload="JavaScript:timedRefresh(5000);">
    ...
</body>

or using a meta tag:

<head>
    <title></title>
    <meta http-equiv="refresh" content="5" />
</head>
<body>
    ...
</body>

or in your controller action:

public ActionResult Index()
{
    Response.AddHeader("Refresh", "5");
    return View();
}
Darin Dimitrov
  • 994,864
  • 265
  • 3,241
  • 2,902