当我提交表单方法帖子以重定向到另一个视图时,ViewResult类结果不起作用

时间:2016-06-12 05:39:59

标签: asp.net-mvc routing viewresult

当我总结一个表格时,我想重定向到另一个带有viewresult类的页面。 这是我的过滤器代码:

 [ValidateSpamFilter(duration: 60, isAddress: false, keepRequestinCache: true)]
    // HttpPost Method For Submit Form . you can add comment by this method .
    [System.Web.Mvc.HttpPost]
    public ActionResult AddComment(CommentAddDTO Comments)

 filterContext.Result = new ViewResult { ViewName = "~/Error/Index"  };

这只适用于actionresutland partialviewresult GET 方法。 但我希望用于 actionresutland Post Method。因为我提交表单方法,我得到低于错误

  找不到

'〜/ Error / Index'或其主人,或者没有视图引擎支持搜索到的位置。搜索了以下位置:\ r \ n〜/错误/索引“

0 个答案:

没有答案