【发布时间】:2019-08-07 06:32:05
【问题描述】:
我想在“Index”视图提供的链接上从“Home”控制器调用“Delete Person”方法,但得到错误:“could not find this resource”:HTTP 404,URL:/Home /删除人/1。我试过@Html.ActionLink,但它也不起作用。我的错误在哪里? 该项目具有 .NET Framework 4.7.2、Entity Framework 6.2.0、MVC 5。 这个项目有 HomeController:
public class HomeController : Controller
{
...
public ViewResult Index()
{
...
return View("Index");
}
[HttpGet]
public ActionResult DelelePerson(int id)
{
...
return View(person);
}
[HttpPost]
public ActionResult DeletePersonConfirmed(int id)
{
...
return RedirectToAction("Index");
}
}
我的 Index.cshtml 包括
<td><p><a href="/Home/DeletePerson/@b.Id">Del</a></p></td>
【问题讨论】: