ASP.NET MVC 中 ActionResult 跟 ViewResult 在使用上的区别
ASP.NET MVC 中 ActionResult 和 ViewResult 在使用上的区别
ActionResult 是一个抽象(abstract)类,ViewResult 只是ActionResult 的一个实现(implementation)。如果你确认你返回的是一个视图(view),你可以直接返回类型为ViewResult。