Castle.MonoRail.Framework.Helpers.FormHelper.TextFieldValue C# (CSharp) Метод

TextFieldValue() публичный Метод

Generates an input text form element with the supplied value
public TextFieldValue ( string target, object value ) : string
target string The string to be used to create the element name.
value object Value to supply to the element (instead of querying the target)
Результат string
		public string TextFieldValue(string target, object value)
		{
			return TextFieldValue(target, value, null);
		}

Same methods

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