1

我正在使用 MVC3,我想检查条件和 id 条件是否为真,然后自动重定向到 Razor 中的另一个页面。请帮助我了解如何自动重定向到另一个页面?

@{
    Layout = null;
    if (@Session["username"]==null)
    {
        //redirection code to page signInEmployee
    }
}
4

2 回答 2

1

@{ Response.Redirect("~/HOME/NoResults");}

于 2014-12-01T06:32:11.790 回答
0

这是控制器逻辑,RedirectToAction在行动中使用,但您也可以section在以下情况下header使用:

<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.yourdomain.com/index.html">

或 (javascript)

document.location = 'url';
于 2012-11-09T09:39:08.207 回答