ASP.NET MVC 中的自动刷新

问题描述 投票:0回答:2

在网络表单中我会这样做

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

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

或Page_Load后面的代码

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

问题如何在ASP.NET MVC3中让屏幕每5秒刷新一次

javascript asp.net-mvc asp.net-mvc-3
2个回答
86
投票

你可以在 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();
}

0
投票

至少在.NET6.0中要在控制器中添加标头,您应该使用:

public IActionResult Index()
{
    Response.Headers.Add("Refresh", "5");
    return View();
}
© www.soinside.com 2019 - 2024. All rights reserved.