I want to provide the ability to delete a record, but only with an [HttpPost] action method, I mean, I don't want another view to confirm the deletion, only a javascript Confirm would be good.
The problem is that since I didn't provide an [HttpGet] action method, the controller can't direct the URL to the [HttpPost] action method, rather it gives 404 Not Found response when I hit the delete link.
Here is my action method:
// Note that there is no [HttpGet] delete action method
[HttpPost]
public ActionResult Delete(string name)
{
var village = Villages.FirstOrDefault(v => v.Name == name && v.Deleted == false);
if (village == null)
return View("Error");
village.Deleted = true;
dc.SubmitChanges();
return RedirectToRoute(new { action = "Index" });
}