Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Returns the HTML input control type as a string.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Public Shared Function GetInputTypeString ( _
inputType As InputType _
) As String
public static string GetInputTypeString(
InputType inputType
)
public:
static String^ GetInputTypeString(
InputType inputType
)
Parameters
- inputType
Type: System.Web.Mvc.InputType
The enumerated input type.
Return Value
Type: System.String
The input type string ("checkbox", "hidden", "password", "radio", or "text").
Remarks
This method is used to render the form method as an XHTML attribute. Therefore, it returns a lowercase string.