通过AJAX显式调用ASP.NET MVC Controller

时间:2009-11-30 12:20:33

标签: asp.net asp.net-mvc ajax asp.net-ajax

我知道我可以使用以下代码来刷新div:

<%=Ajax.ActionLink( "Update", "Administration", new AjaxOptions { UpdateTargetId = "grid", LoadingElementId = "grid-wait" } ) %>

但是这会创建一个链接;用户必须单击它才能刷新视图。

如何让它自动化,例如,如果我希望每五秒后刷新一次网格?

1 个答案:

答案 0 :(得分:0)

试试这个:

<p id="CurrentDateTime"></p>

<script src="../../Scripts/jquery-1.3.2.min.js" type="text/javascript"></script>

<script type="text/javascript">
    window.setInterval(updateDateTime, 5000);
    function updateDateTime() {
        $.get("GetCurrentDate?rnd=" + Math.random(1000), {}, function (r) {
            $("#CurrentDateTime").html(r);
        }, "text");
    }
</script>

public ActionResult GetCurrentDate()
{
    return Content(DateTime.Now.ToString("U"));
}