1.编辑项目的web.config文件, 添加默认的处理
<?xml version="1.0"?>
<configuration>
<system.web>
<!-- 没有对应的controller时,选择Home.Path404函数 --->
<customErrors mode="On" defaultRedirect="Home/Path404" />
</system.web>
</configuration>
2.添加404的控制器
namespace MsgManFrame.Controllers
{
public class HomeController : Controller
{
public ViewResult Path404()
{
return View("404");
}
}
}
3.添加404的view