InputExtensions.Hidden Method (HtmlHelper, String, Object)
Returns a hidden input element by using the specified HTML helper, the name of the form field, and the value.
Namespace: System.Web.Mvc.Html
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
public static MvcHtmlString Hidden( this HtmlHelper htmlHelper, string name, Object value )
Parameters
- htmlHelper
- Type: System.Web.Mvc.HtmlHelper
The HTML helper instance that this method extends.
- name
- Type: System.String
The name of the form field and the ViewDataDictionary key that is used to look up the value.
- value
- Type: System.Object
The value of the hidden input element. The value of the element is retrieved from the ViewDataDictionary object. If no value exists there, the value is retrieved from the ModelStateDictionary object. If the element is not found in the ViewDataDictionary or the ModelStateDictionary, the value parameter is used.
Return Value
Type: System.Web.Mvc.MvcHtmlStringAn input element whose type attribute is set to "hidden".