我正在尝试从 asp.net 网站示例应用程序MVCMovieApplication学习 ASP.Net MVC 。此应用程序是为 MVC3 编写的。我被困在下面的部分。有人可以帮我解决这个问题吗?
public ActionResult Edit(int id = 0)
{
Movie movie = db.Movies.Find(id);
if (movie == null)
{
return HttpNotFound();
}
return View(movie);
}
错误:
The Name 'HTTPNotFound' does not exist in the current context.