Castle.MonoRail.Framework.Helpers.FormHelper.PasswordNumberField C# (CSharp) Méthode

PasswordNumberField() public méthode

Generates an input password element with a javascript that prevents chars other than numbers from being entered.

The value is extracted from the target (if available)

You must invoke FormHelper.InstallScripts before using it
public PasswordNumberField ( string target ) : string
target string The object to get the value from and to be based on to create the element name.
Résultat string
		public string PasswordNumberField(string target)
		{
			return PasswordNumberField(target, null);
		}

Same methods

FormHelper::PasswordNumberField ( string target, IDictionary attributes ) : string