FormExtensions::BeginRouteForm Method

 

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

Namespace:   System.Web.Mvc.Html
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticBeginRouteForm(HtmlHelper^, Object^)

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

System_CAPS_pubmethodSystem_CAPS_staticBeginRouteForm(HtmlHelper^, RouteValueDictionary^)

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

System_CAPS_pubmethodSystem_CAPS_staticBeginRouteForm(HtmlHelper^, String^)

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

System_CAPS_pubmethodSystem_CAPS_staticBeginRouteForm(HtmlHelper^, String^, FormMethod)

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

System_CAPS_pubmethodSystem_CAPS_staticBeginRouteForm(HtmlHelper^, 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 the route target.

System_CAPS_pubmethodSystem_CAPS_staticBeginRouteForm(HtmlHelper^, String^, FormMethod, Object^)

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

System_CAPS_pubmethodSystem_CAPS_staticBeginRouteForm(HtmlHelper^, String^, Object^)

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

System_CAPS_pubmethodSystem_CAPS_staticBeginRouteForm(HtmlHelper^, String^, Object^, FormMethod)

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

System_CAPS_pubmethodSystem_CAPS_staticBeginRouteForm(HtmlHelper^, String^, Object^, FormMethod, Object^)

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

System_CAPS_pubmethodSystem_CAPS_staticBeginRouteForm(HtmlHelper^, String^, RouteValueDictionary^)

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

System_CAPS_pubmethodSystem_CAPS_staticBeginRouteForm(HtmlHelper^, String^, RouteValueDictionary^, FormMethod)

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

System_CAPS_pubmethodSystem_CAPS_staticBeginRouteForm(HtmlHelper^, 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 the route target.

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

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

Return to top

FormExtensions::BeginRouteForm Method (HtmlHelper^, Object^)

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

public:
[ExtensionAttribute]
static MvcForm^ BeginRouteForm(
	HtmlHelper^ htmlHelper,
	Object^ routeValues
)

Parameters

htmlHelper
Type: System.Web.Mvc::HtmlHelper^

The HTML helper instance that this method extends.

routeValues
Type: System::Object^

An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.

Return Value

Type: System.Web.Mvc.Html::MvcForm^

An opening <form> tag.

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

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

Return to top

FormExtensions::BeginRouteForm Method (HtmlHelper^, RouteValueDictionary^)

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

public:
[ExtensionAttribute]
static MvcForm^ BeginRouteForm(
	HtmlHelper^ htmlHelper,
	RouteValueDictionary^ routeValues
)

Parameters

htmlHelper
Type: System.Web.Mvc::HtmlHelper^

The HTML helper instance that this method extends.

routeValues
Type: System.Web.Routing::RouteValueDictionary^

An object that contains the parameters for a route

Return Value

Type: System.Web.Mvc.Html::MvcForm^

An opening <form> tag.

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

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

Return to top

FormExtensions::BeginRouteForm Method (HtmlHelper^, String^)

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

public:
[ExtensionAttribute]
static MvcForm^ BeginRouteForm(
	HtmlHelper^ htmlHelper,
	String^ routeName
)

Parameters

htmlHelper
Type: System.Web.Mvc::HtmlHelper^

The HTML helper instance that this method extends.

routeName
Type: System::String^

The name of the route to use to obtain the form-post URL.

Return Value

Type: System.Web.Mvc.Html::MvcForm^

An opening <form> tag.

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

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

Return to top

FormExtensions::BeginRouteForm Method (HtmlHelper^, String^, FormMethod)

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

public:
[ExtensionAttribute]
static MvcForm^ BeginRouteForm(
	HtmlHelper^ htmlHelper,
	String^ routeName,
	FormMethod method
)

Parameters

htmlHelper
Type: System.Web.Mvc::HtmlHelper^

The HTML helper instance that this method extends.

routeName
Type: System::String^

The name of the route to use to obtain the form-post URL.

method
Type: System.Web.Mvc::FormMethod

The HTTP method for processing the form, either GET or POST.

Return Value

Type: System.Web.Mvc.Html::MvcForm^

An opening <form> tag.

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

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

The htmlAttributes parameter consists of an object that contains name/value pairs. The attributes that are specified in the name/value pairs depend on the HTML element that is being rendered. For example, for a form element, you might provide the following anonymous object:

new { id = “text1”, accept-charset=”iso-8859-1” }

New With { .id = “text1”, .accept-charset=”iso-8859-1” }

Return to top

FormExtensions::BeginRouteForm Method (HtmlHelper^, 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 the route target.

public:
[ExtensionAttribute]
static MvcForm^ BeginRouteForm(
	HtmlHelper^ htmlHelper,
	String^ routeName,
	FormMethod method,
	IDictionary<String^, Object^>^ htmlAttributes
)

Parameters

htmlHelper
Type: System.Web.Mvc::HtmlHelper^

The HTML helper instance that this method extends.

routeName
Type: System::String^

The name of the route to use to obtain the form-post URL.

method
Type: System.Web.Mvc::FormMethod

The HTTP method for processing the form, either GET or POST.

htmlAttributes
Type: System.Collections.Generic::IDictionary<String^, Object^>^

An object that contains the HTML attributes to set for the element.

Return Value

Type: System.Web.Mvc.Html::MvcForm^

An opening <form> tag.

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

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

The htmlAttributes parameter consists of an object that contains name/value pairs. The attributes that are specified in the name/value pairs depend on the HTML element that is being rendered. For example, for a form element, you might provide the following anonymous object:

new { id = “text1”, accept-charset=”iso-8859-1” }

New With { .id = “text1”, .accept-charset=”iso-8859-1” }

Return to top

FormExtensions::BeginRouteForm Method (HtmlHelper^, String^, FormMethod, Object^)

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

public:
[ExtensionAttribute]
static MvcForm^ BeginRouteForm(
	HtmlHelper^ htmlHelper,
	String^ routeName,
	FormMethod method,
	Object^ htmlAttributes
)

Parameters

htmlHelper
Type: System.Web.Mvc::HtmlHelper^

The HTML helper instance that this method extends.

routeName
Type: System::String^

The name of the route to use to obtain the form-post URL.

method
Type: System.Web.Mvc::FormMethod

The HTTP method for processing the form, either GET or POST.

htmlAttributes
Type: System::Object^

An object that contains the HTML attributes to set for the element.

Return Value

Type: System.Web.Mvc.Html::MvcForm^

An opening <form> tag.

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

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

The htmlAttributes parameter consists of an object that contains name/value pairs. The attributes that are specified in the name/value pairs depend on the HTML element that is being rendered. For example, for a form element, you might provide the following anonymous object:

new { id = “text1”, accept-charset=”iso-8859-1” }

New With { .id = “text1”, .accept-charset=”iso-8859-1” }

Return to top

FormExtensions::BeginRouteForm Method (HtmlHelper^, String^, Object^)

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

public:
[ExtensionAttribute]
static MvcForm^ BeginRouteForm(
	HtmlHelper^ htmlHelper,
	String^ routeName,
	Object^ routeValues
)

Parameters

htmlHelper
Type: System.Web.Mvc::HtmlHelper^

The HTML helper instance that this method extends.

routeName
Type: System::String^

The name of the route to use to obtain the form-post URL.

routeValues
Type: System::Object^

An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.

Return Value

Type: System.Web.Mvc.Html::MvcForm^

An opening <form> tag.

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

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

Return to top

FormExtensions::BeginRouteForm Method (HtmlHelper^, String^, Object^, FormMethod)

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

public:
[ExtensionAttribute]
static MvcForm^ BeginRouteForm(
	HtmlHelper^ htmlHelper,
	String^ routeName,
	Object^ routeValues,
	FormMethod method
)

Parameters

htmlHelper
Type: System.Web.Mvc::HtmlHelper^

The HTML helper instance that this method extends.

routeName
Type: System::String^

The name of the route to use to obtain the form-post URL.

routeValues
Type: System::Object^

An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.

method
Type: System.Web.Mvc::FormMethod

The HTTP method for processing the form, either GET or POST.

Return Value

Type: System.Web.Mvc.Html::MvcForm^

An opening <form> tag.

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

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

Return to top

FormExtensions::BeginRouteForm Method (HtmlHelper^, String^, Object^, FormMethod, Object^)

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

public:
[ExtensionAttribute]
static MvcForm^ BeginRouteForm(
	HtmlHelper^ htmlHelper,
	String^ routeName,
	Object^ routeValues,
	FormMethod method,
	Object^ htmlAttributes
)

Parameters

htmlHelper
Type: System.Web.Mvc::HtmlHelper^

The HTML helper instance that this method extends.

routeName
Type: System::String^

The name of the route to use to obtain the form-post URL.

routeValues
Type: System::Object^

An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. This object is typically created by using object initializer syntax.

method
Type: System.Web.Mvc::FormMethod

The HTTP method for processing the form, either GET or POST.

htmlAttributes
Type: System::Object^

An object that contains the HTML attributes to set for the element.

Return Value

Type: System.Web.Mvc.Html::MvcForm^

An opening <form> tag.

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

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

The htmlAttributes parameter consists of an object that contains name/value pairs. The attributes that are specified in the name/value pairs depend on the HTML element that is being rendered. For example, for a form element, you might provide the following anonymous object:

new { id = “text1”, accept-charset=”iso-8859-1” }

New With { .id = “text1”, .accept-charset=”iso-8859-1” }

Return to top

FormExtensions::BeginRouteForm Method (HtmlHelper^, String^, RouteValueDictionary^)

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

public:
[ExtensionAttribute]
static MvcForm^ BeginRouteForm(
	HtmlHelper^ htmlHelper,
	String^ routeName,
	RouteValueDictionary^ routeValues
)

Parameters

htmlHelper
Type: System.Web.Mvc::HtmlHelper^

The HTML helper instance that this method extends.

routeName
Type: System::String^

The name of the route to use to obtain the form-post URL.

routeValues
Type: System.Web.Routing::RouteValueDictionary^

An object that contains the parameters for a route

Return Value

Type: System.Web.Mvc.Html::MvcForm^

An opening <form> tag.

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

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

Return to top

FormExtensions::BeginRouteForm Method (HtmlHelper^, String^, RouteValueDictionary^, FormMethod)

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

public:
[ExtensionAttribute]
static MvcForm^ BeginRouteForm(
	HtmlHelper^ htmlHelper,
	String^ routeName,
	RouteValueDictionary^ routeValues,
	FormMethod method
)

Parameters

htmlHelper
Type: System.Web.Mvc::HtmlHelper^

The HTML helper instance that this method extends.

routeName
Type: System::String^

The name of the route to use to obtain the form-post URL.

routeValues
Type: System.Web.Routing::RouteValueDictionary^

An object that contains the parameters for a route

method
Type: System.Web.Mvc::FormMethod

The HTTP method for processing the form, either GET or POST.

Return Value

Type: System.Web.Mvc.Html::MvcForm^

An opening <form> tag.

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

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

Return to top

FormExtensions::BeginRouteForm Method (HtmlHelper^, 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 the route target.

public:
[ExtensionAttribute]
static MvcForm^ BeginRouteForm(
	HtmlHelper^ htmlHelper,
	String^ routeName,
	RouteValueDictionary^ routeValues,
	FormMethod method,
	IDictionary<String^, Object^>^ htmlAttributes
)

Parameters

htmlHelper
Type: System.Web.Mvc::HtmlHelper^

The HTML helper instance that this method extends.

routeName
Type: System::String^

The name of the route to use to obtain the form-post URL.

routeValues
Type: System.Web.Routing::RouteValueDictionary^

An object that contains the parameters for a route

method
Type: System.Web.Mvc::FormMethod

The HTTP method for processing the form, either GET or POST.

htmlAttributes
Type: System.Collections.Generic::IDictionary<String^, Object^>^

An object that contains the HTML attributes to set for the element.

Return Value

Type: System.Web.Mvc.Html::MvcForm^

An opening <form> tag.

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

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

Return to top
Show: