FormExtensions.BeginRouteForm Metodo

Definizione

Overload

BeginRouteForm(HtmlHelper, String, Object, FormMethod, Object)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

BeginRouteForm(HtmlHelper, String, RouteValueDictionary, FormMethod)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

BeginRouteForm(HtmlHelper, String, FormMethod, Object)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

BeginRouteForm(HtmlHelper, String, FormMethod, IDictionary<String,Object>)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

BeginRouteForm(HtmlHelper, String, Object, FormMethod)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

BeginRouteForm(HtmlHelper, String, Object)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

BeginRouteForm(HtmlHelper, String, FormMethod)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

BeginRouteForm(HtmlHelper, RouteValueDictionary)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

BeginRouteForm(HtmlHelper, String)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

BeginRouteForm(HtmlHelper, Object)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

BeginRouteForm(HtmlHelper, String, RouteValueDictionary, FormMethod, IDictionary<String,Object>)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

BeginRouteForm(HtmlHelper, String, RouteValueDictionary)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

BeginRouteForm(HtmlHelper, String, Object, FormMethod, Object)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, object routeValues, System.Web.Mvc.FormMethod method, object htmlAttributes);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * obj * System.Web.Mvc.FormMethod * obj -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, routeValues As Object, method As FormMethod, htmlAttributes As Object) As MvcForm

Parametri

htmlHelper
HtmlHelper

Istanza dell'helper HTML estesa da questo metodo.

routeName
String

Nome della route da usare per ottenere l'URL del post per il form.

routeValues
Object

Oggetto che contiene i parametri per una route. I parametri vengono recuperati tramite reflection esaminando le proprietà dell'oggetto. Questo oggetto viene creato, in genere, usando la sintassi dell'inizializzatore di oggetto.

method
FormMethod

Metodo HTTP per l'elaborazione del form, ovvero GET o POST.

htmlAttributes
Object

Oggetto che contiene gli attributi HTML da impostare per l'elemento.

Restituisce

Tag modulo> di apertura<.

Si applica a

BeginRouteForm(HtmlHelper, String, RouteValueDictionary, FormMethod)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, System.Web.Routing.RouteValueDictionary routeValues, System.Web.Mvc.FormMethod method);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * System.Web.Routing.RouteValueDictionary * System.Web.Mvc.FormMethod -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, routeValues As RouteValueDictionary, method As FormMethod) As MvcForm

Parametri

htmlHelper
HtmlHelper

Istanza dell'helper HTML estesa da questo metodo.

routeName
String

Nome della route da usare per ottenere l'URL del post per il form.

routeValues
RouteValueDictionary

Oggetto che contiene i parametri per una route.

method
FormMethod

Metodo HTTP per l'elaborazione del form, ovvero GET o POST.

Restituisce

Tag modulo> di apertura<.

Si applica a

BeginRouteForm(HtmlHelper, String, FormMethod, Object)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, System.Web.Mvc.FormMethod method, object htmlAttributes);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * System.Web.Mvc.FormMethod * obj -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, method As FormMethod, htmlAttributes As Object) As MvcForm

Parametri

htmlHelper
HtmlHelper

Istanza dell'helper HTML estesa da questo metodo.

routeName
String

Nome della route da usare per ottenere l'URL del post per il form.

method
FormMethod

Metodo HTTP per l'elaborazione del form, ovvero GET o POST.

htmlAttributes
Object

Oggetto che contiene gli attributi HTML da impostare per l'elemento.

Restituisce

Tag modulo> di apertura<.

Si applica a

BeginRouteForm(HtmlHelper, String, FormMethod, IDictionary<String,Object>)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, System.Web.Mvc.FormMethod method, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * System.Web.Mvc.FormMethod * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, method As FormMethod, htmlAttributes As IDictionary(Of String, Object)) As MvcForm

Parametri

htmlHelper
HtmlHelper

Istanza dell'helper HTML estesa da questo metodo.

routeName
String

Nome della route da usare per ottenere l'URL del post per il form.

method
FormMethod

Metodo HTTP per l'elaborazione del form, ovvero GET o POST.

htmlAttributes
IDictionary<String,Object>

Oggetto che contiene gli attributi HTML da impostare per l'elemento.

Restituisce

Tag modulo> di apertura<.

Si applica a

BeginRouteForm(HtmlHelper, String, Object, FormMethod)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, object routeValues, System.Web.Mvc.FormMethod method);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * obj * System.Web.Mvc.FormMethod -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, routeValues As Object, method As FormMethod) As MvcForm

Parametri

htmlHelper
HtmlHelper

Istanza dell'helper HTML estesa da questo metodo.

routeName
String

Nome della route da usare per ottenere l'URL del post per il form.

routeValues
Object

Oggetto che contiene i parametri per una route. I parametri vengono recuperati tramite reflection esaminando le proprietà dell'oggetto. Questo oggetto viene creato, in genere, usando la sintassi dell'inizializzatore di oggetto.

method
FormMethod

Metodo HTTP per l'elaborazione del form, ovvero GET o POST.

Restituisce

Tag modulo> di apertura<.

Si applica a

BeginRouteForm(HtmlHelper, String, Object)

Scrive un tag modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, object routeValues);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * obj -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, routeValues As Object) As MvcForm

Parametri

htmlHelper
HtmlHelper

Istanza dell'helper HTML estesa da questo metodo.

routeName
String

Nome della route da usare per ottenere l'URL del post per il form.

routeValues
Object

Oggetto che contiene i parametri per una route. I parametri vengono recuperati tramite reflection esaminando le proprietà dell'oggetto. Questo oggetto viene creato, in genere, usando la sintassi dell'inizializzatore di oggetto.

Restituisce

Tag modulo> di apertura<.

Si applica a

BeginRouteForm(HtmlHelper, String, FormMethod)

Scrive un tag di modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, System.Web.Mvc.FormMethod method);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * System.Web.Mvc.FormMethod -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, method As FormMethod) As MvcForm

Parametri

htmlHelper
HtmlHelper

Istanza dell'helper HTML estesa da questo metodo.

routeName
String

Nome della route da usare per ottenere l'URL del post per il form.

method
FormMethod

Metodo HTTP per l'elaborazione del form, ovvero GET o POST.

Restituisce

Tag modulo> di apertura<.

Si applica a

BeginRouteForm(HtmlHelper, RouteValueDictionary)

Scrive un tag di modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, System.Web.Routing.RouteValueDictionary routeValues);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * System.Web.Routing.RouteValueDictionary -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeValues As RouteValueDictionary) As MvcForm

Parametri

htmlHelper
HtmlHelper

Istanza dell'helper HTML estesa da questo metodo.

routeValues
RouteValueDictionary

Oggetto che contiene i parametri per una route.

Restituisce

Tag di modulo> di apertura<.

Si applica a

BeginRouteForm(HtmlHelper, String)

Scrive un tag di modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String) As MvcForm

Parametri

htmlHelper
HtmlHelper

Istanza dell'helper HTML estesa da questo metodo.

routeName
String

Nome della route da usare per ottenere l'URL del post per il form.

Restituisce

Tag di modulo> di apertura<.

Si applica a

BeginRouteForm(HtmlHelper, Object)

Scrive un tag di modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, object routeValues);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * obj -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeValues As Object) As MvcForm

Parametri

htmlHelper
HtmlHelper

Istanza dell'helper HTML estesa da questo metodo.

routeValues
Object

Oggetto che contiene i parametri per una route. I parametri vengono recuperati tramite reflection esaminando le proprietà dell'oggetto. Questo oggetto viene creato, in genere, usando la sintassi dell'inizializzatore di oggetto.

Restituisce

Tag di modulo> di apertura<.

Si applica a

BeginRouteForm(HtmlHelper, String, RouteValueDictionary, FormMethod, IDictionary<String,Object>)

Scrive un tag di modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, System.Web.Routing.RouteValueDictionary routeValues, System.Web.Mvc.FormMethod method, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * System.Web.Routing.RouteValueDictionary * System.Web.Mvc.FormMethod * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, routeValues As RouteValueDictionary, method As FormMethod, htmlAttributes As IDictionary(Of String, Object)) As MvcForm

Parametri

htmlHelper
HtmlHelper

Istanza dell'helper HTML estesa da questo metodo.

routeName
String

Nome della route da usare per ottenere l'URL del post per il form.

routeValues
RouteValueDictionary

Oggetto che contiene i parametri per una route.

method
FormMethod

Metodo HTTP per l'elaborazione del form, ovvero GET o POST.

htmlAttributes
IDictionary<String,Object>

Oggetto che contiene gli attributi HTML da impostare per l'elemento.

Restituisce

Tag di modulo> di apertura<.

Si applica a

BeginRouteForm(HtmlHelper, String, RouteValueDictionary)

Scrive un tag di modulo> di apertura <nella risposta. Quando l'utente invia il form, la richiesta verrà elaborata dalla destinazione della route.

public static System.Web.Mvc.Html.MvcForm BeginRouteForm (this System.Web.Mvc.HtmlHelper htmlHelper, string routeName, System.Web.Routing.RouteValueDictionary routeValues);
static member BeginRouteForm : System.Web.Mvc.HtmlHelper * string * System.Web.Routing.RouteValueDictionary -> System.Web.Mvc.Html.MvcForm
<Extension()>
Public Function BeginRouteForm (htmlHelper As HtmlHelper, routeName As String, routeValues As RouteValueDictionary) As MvcForm

Parametri

htmlHelper
HtmlHelper

Istanza dell'helper HTML estesa da questo metodo.

routeName
String

Nome della route da usare per ottenere l'URL del post per il form.

routeValues
RouteValueDictionary

Oggetto che contiene i parametri per una route.

Restituisce

Tag di modulo> di apertura<.

Si applica a