Castle.MonoRail.Framework.Helpers.FormHelper.HiddenField C# (CSharp) Method

HiddenField() public method

Generates a hidden form element with the specified value
public HiddenField ( string target, object value, IDictionary attributes ) : string
target string The object to get the value from and to be based on to create the element name.
value object The value for the hidden field
attributes IDictionary Attributes for the FormHelper method and for the html element it generates
return string
		public string HiddenField(string target, object value, IDictionary attributes)
		{
			return CreateInputElement("hidden", target, value, attributes);
		}

Same methods

FormHelper::HiddenField ( string target ) : string
FormHelper::HiddenField ( string target, IDictionary attributes ) : string
FormHelper::HiddenField ( string target, object value ) : string