在ASP的不同区域自定义错误页面.净MVC3
本文关键字:错误 MVC3 自定义 区域 ASP | 更新日期: 2023-09-27 18:07:07
我使用
在我的网站上设置了自定义错误页面<customErrors mode="RemoteOnly" defaultRedirect="~/Error">
<error statusCode="500" redirect="~/Error/InternalError"/>
<error statusCode="404" redirect="~/Error/FileNotFound"/>
<error statusCode="403" redirect="~/Error/AccessDenied"/>
</customErrors>
然而,网站上还有另一个区域,供应商,当供应商区域出现错误时,重定向到供应商/错误/_。因为我这里没有任何错误页面,网站似乎只是挂从不显示错误页面。我如何解决这个问题,而不必将错误页面复制到供应商区域?
据我所知,MVC你的URL组成,默认情况下是:
域/控制器/动作/id如果你有一个"Error"控制器。在您的逻辑中,您可以测试该请求是否来自需要重定向到"供应商"错误页面
的站点用户。 [HandleError]
public ActionResult Index()
{
// Test to see if you need to go to the SuppliersController
if (this.User.IsInRole("supplier"))
{
return Redirect("/Suppliers/Error");
}
else
{
return View(); // This returns the "Error" View from the shared folder
}
}
重定向到供应商控制器上的错误处理操作,该操作将返回正确的视图。
public class SuppliersController : Controller
{
//
// GET: /Suppliers/
public ActionResult Error()
{
return View("Error","SomeMasterPage"); // No "Error" view in Suppliers View folder, so it uses the one in shared folder
}
}
您还可以在供应商错误操作上使用[Authorize]
属性来确保用户已登录。
这样,你将得到你想要的/Suppliers/Error URL,并且可以使用SuppliersController Action来指定想要的视图、模型和母版/布局页面。
再看看这个对类似问题的非常全面的回答:
最好的404例子,我可以找到mvc
我想在错误页面之前删除"~"应该可以解决问题,但是您将需要"'"。
另一种方法是在redirect/defaultRedirect属性中写入完整的URL。