IHtmlHelper.BeginForm Méthode

Définition

Restitue une <balise de début de formulaire> dans la réponse. Lorsque l’utilisateur envoie le formulaire, l’action avec son nom actionName traite la demande.

public:
 Microsoft::AspNetCore::Mvc::Rendering::MvcForm ^ BeginForm(System::String ^ actionName, System::String ^ controllerName, System::Object ^ routeValues, Microsoft::AspNetCore::Mvc::Rendering::FormMethod method, Nullable<bool> antiforgery, System::Object ^ htmlAttributes);
public Microsoft.AspNetCore.Mvc.Rendering.MvcForm BeginForm (string actionName, string controllerName, object routeValues, Microsoft.AspNetCore.Mvc.Rendering.FormMethod method, bool? antiforgery, object htmlAttributes);
abstract member BeginForm : string * string * obj * Microsoft.AspNetCore.Mvc.Rendering.FormMethod * Nullable<bool> * obj -> Microsoft.AspNetCore.Mvc.Rendering.MvcForm
Public Function BeginForm (actionName As String, controllerName As String, routeValues As Object, method As FormMethod, antiforgery As Nullable(Of Boolean), htmlAttributes As Object) As MvcForm

Paramètres

actionName
String

Nom de la méthode d’action.

controllerName
String

Nom du contrôleur.

routeValues
Object

Object qui contient les paramètres d’un itinéraire. Les paramètres sont récupérés par réflexion en examinant les propriétés de .Object Il Object est généralement créé à l’aide de Object la syntaxe d’initialiseur. Vous pouvez également utiliser une IDictionary<TKey,TValue> instance contenant les paramètres de route.

method
FormMethod

Méthode HTTP pour le traitement du formulaire, GET ou POST.

antiforgery
Nullable<Boolean>

Si true, <les éléments de formulaire> incluent un jeton antiforgery. Si false, supprime la génération d’une <entrée> de type « masqué » avec un jeton antiforgery. Si null, <les éléments de formulaire> incluent un jeton antiforgery uniquement si method n’est pas Get.

htmlAttributes
Object

Object qui contient les attributs HTML de l’élément . IDictionary<TKey,TValue> Une instance contenant les attributs HTML.

Retours

Une MvcForm instance qui affiche la <balise de fin /form> lorsqu’elle est supprimée.

Remarques

Dans ce contexte, « renders » signifie que la méthode écrit sa sortie à l’aide de Writer.

S’applique à