我读了
如果未在 MVC 3 中进行身份验证,如何轻松重定向?当用户未获得授权但来自答案的链接(表示http://wekeroad.com/2008/03/12/aspnet-mvc-securing-your-controller-actions/)不起作用时 重定向到 AccessDenied 页面。
我放
[Authorize(Users = "test")]
public class RestrictedPageController: Controller
{
public ActionResult Index()
{
return View();
}
....
}
在我的 web.config 中,我已经
<authentication mode="Forms">
<forms loginUrl="~/Account/LogOn" timeout="2880" />
</authentication>
相应地与https://stackoverflow.com/a/6770583/998696
但是当我想访问时/RestrictedPage/Index
,它必须将我重定向到其他页面(来自其他控制器)。而不是这个,错误看起来像:
Server Error in '/Project' Application.
The view 'LogOn' or its master was not found or no view engine supports the searched locations. The following locations were searched:
~/Views/Account/LogOn.aspx
~/Views/Account/LogOn.ascx
~/Views/Shared/LogOn.aspx
~/Views/Shared/LogOn.ascx
~/Views/Account/LogOn.cshtml
~/Views/Account/LogOn.vbhtml
~/Views/Shared/LogOn.cshtml
~/Views/Shared/LogOn.vbhtml
登录前,页面表单显示正确,但访问页面Logon
时出现上述错误。/RestrictedPage/Index
我可以使用不同的授权访问RestrictedPage
页面的用户登录。
我的错误在哪里以及如何设置重定向?