MVC 4中的C#CRUD操作一个视图

时间:2015-07-04 05:59:09

标签: c# asp.net-mvc-4

我尝试做CRUD操作。操作是,如果用户单击“从网格编辑”,则数据应显示在网格下方的控件中。这意味着,网格和控件在同一页面中。以下是代码:

 @Html.ActionLink("Edit", "Update", new {  id=item.Country_ID  }) 

在控制器中:

 [HttpPost]
    public ActionResult Update(TBL_Country tbl_country)
    {
        if (ModelState.IsValid)
        {
            db.Entry(tbl_country).State = EntityState.Modified;
            db.SaveChanges();                
        }
        return View(tbl_country);
    }

但是,它显示错误说明:

  

它没有任何观点。如何再次提供相同的页面视图?

我是MVC4的初学者。

1 个答案:

答案 0 :(得分:0)

您只需要编写View路径,就像这样

返回视图(“〜/ Views / ControllerName / ViewName.cshtml”,tbl_country);