MVC 3 -ASP.NET 重定向到不同视图
在 MVC 3-ASP.NET 中,我正在验证控制器中页面的权限级别。如果用户被授权查看该页面,那么我将使用以下代码来呈现它,但我不知道如何在未经授权的情况下重定向到新视图
有人可以告诉我如何显示警告说,您无权查看页面并重定向到主页?
public ActionResult viewName()
if(userAuthorised)
{
return View()
}
else
{
//Alert Message
//Redirect to different view like Home Page..
}
请问有什么例子吗?
谢谢
In MVC 3-ASP.NET, I am validating the permission level on the page in the controller. If the user is authorised to see the page then I am using the following code to render it but I don't how to redirect to a new view if not authorised
Could any one tell me how to display alert saying, you are not authorised to see the page and redirect to home page?
public ActionResult viewName()
if(userAuthorised)
{
return View()
}
else
{
//Alert Message
//Redirect to different view like Home Page..
}
Any examples please?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你有2个选择。
1) 创建一个标准错误视图并在 else 中返回它:
2) 使用指向另一个返回错误视图的控制器方法的重定向到操作
You have 2 choices.
1) Create a standard error view and return this in the else:
2) Use a Redirect to Action which points at another Controller method which returns the Error View
请参阅 Controller.RedirectToAction 方法
http://msdn。 microsoft.com/ja-jp/library/system.web.mvc.controller.redirecttoaction.aspx
See Controller.RedirectToAction Method
http://msdn.microsoft.com/ja-jp/library/system.web.mvc.controller.redirecttoaction.aspx