FormExtensions.BeginForm Method

Include Protected Members
Include Inherited Members

Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.

This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

Overload List

  Name Description
Public methodStatic member BeginForm(HtmlHelper) Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
Public methodStatic member BeginForm(HtmlHelper, Object) Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
Public methodStatic member BeginForm(HtmlHelper, RouteValueDictionary) Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
Public methodStatic member BeginForm(HtmlHelper, String, String) Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
Public methodStatic member BeginForm(HtmlHelper, String, String, Object) Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
Public methodStatic member BeginForm(HtmlHelper, String, String, FormMethod) Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
Public methodStatic member BeginForm(HtmlHelper, String, String, RouteValueDictionary) Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
Public methodStatic member BeginForm(HtmlHelper, String, String, Object, FormMethod) Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
Public methodStatic member BeginForm(HtmlHelper, String, String, FormMethod, IDictionary<String, Object>) Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
Public methodStatic member BeginForm(HtmlHelper, String, String, FormMethod, Object) Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
Public methodStatic member BeginForm(HtmlHelper, String, String, RouteValueDictionary, FormMethod) Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
Public methodStatic member BeginForm(HtmlHelper, String, String, Object, FormMethod, Object) Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.
Public methodStatic member BeginForm(HtmlHelper, String, String, RouteValueDictionary, FormMethod, IDictionary<String, Object>) Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method.

Top

Remarks

The BeginForm method renders a form that will be handled by a controller action method.

You can use this method in a using statement. In that case, the method renders the closing </form> tag at the end of the using block.

See Also

Reference

FormExtensions Class

System.Web.Mvc.Html Namespace