加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > asp.Net > 正文

asp.net – RedirectToAction MVC2的问题 – 不能将类型“System

发布时间:2020-12-15 22:53:07 所属栏目:asp.Net 来源:网络整理
导读:在尝试使用RedirectToAction时,我收到此错误,任何人都可以提供任何建议,为什么会发生这种情况,呃在没有任何问题的情况下使用这个错误,我一定是缺少一些东西. 不能将类型“System.Web.Mvc.RedirectToRouteResult”隐式转换为“System.Web.Mvc.ViewResult” [H
在尝试使用RedirectToAction时,我收到此错误,任何人都可以提供任何建议,为什么会发生这种情况,呃在没有任何问题的情况下使用这个错误,我一定是缺少一些东西.

不能将类型“System.Web.Mvc.RedirectToRouteResult”隐式转换为“System.Web.Mvc.ViewResult”

[HttpPost]
    public ViewResult Edit(Customer customer)
    {
        if (ModelState.IsValid)
        {
            customersRepository.SaveCustomer(customer);
            TempData["message"] = customer.CustomerName + " has been saved.";
            return RedirectToAction("Index");
        }

        else //validation error,so redisplay the same view
            return View(customer);

    }

问候

利亚姆

解决方法

尝试将公共ViewResult Edit(客户客户)更改为public ActionResult Edit(客户客户)

ViewResult派生自ActionResult,只能返回视图.由于您的代码可以返回View或重定向,因此您应该使用ActionResult.有关详细信息,请参阅this answer.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读