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

RadioField() public method

Generates a radio input type with the specified value to send to the served in case the element in checked. It will automatically check the radio if the target evaluated value is equal to the specified valueToSend.
public RadioField ( string target, object valueToSend ) : string
target string The object to get the value from and to be based on to create the element name.
valueToSend object
return string
		public string RadioField(string target, object valueToSend)
		{
			return RadioField(target, valueToSend, null);
		}

Same methods

FormHelper::RadioField ( string target, object valueToSend, IDictionary attributes ) : string