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.
| Name | Description | |
|---|---|---|
|
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. |
|
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. |
|
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. |
|
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. |
|
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. |
|
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. |
|
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. |
|
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. |
|
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. |
|
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. |
|
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. |
|
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. |
|
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. |
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.
Reference
"Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method."
Really? I'm enlightened!!
What a joy to have 20 different methods that can do the job!!
Those arguments are just to show the C# supports method overloading, isn't it?
No? Oh, let me see I must have missed the manual.
The page clearly explains what the different overloads do, isn't it - "Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method." So stupid of me!