HtmlHelper.GetFormMethodString Method

Returns the HTTP method that handles form input (GET or POST) as a string.

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

'Declaration
Public Shared Function GetFormMethodString ( _
	method As FormMethod _
) As String
'Usage
Dim method As FormMethod 
Dim returnValue As String 

returnValue = HtmlHelper.GetFormMethodString(method)

Parameters

method
Type: System.Web.Mvc.FormMethod

The HTTP method that handles the form.

Return Value

Type: System.String
The form method string, either "get" or "post".

This method is used to render the form method as an XHTML attribute. Therefore, it returns a lowercase string.

Show: