I\'d like to use the appropriate HTTP method when possible. In this case, when a button is clicked to delete something, I want to fire the controller action with the attribu
You need this in your form:
@using (Html.BeginForm("Order", "Users"){ @Html.HttpMethodOverride(HttpVerbs.Delete) }