There is no such overload in the structure. However, if you submit the action and controller as null , the structure will do what you want. If you don't like this, you can create this extension yourself:
public static MvcForm BeginForm(this HtmlHelper htmlHelper, FormMethod method) { return htmlHelper.BeginForm(null, null, method); }
source share