Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- ClipX.Lib v1.2 - <b>password()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Password()
Returns/writes HTML Password Input form field
---------------------------------------------------------------------

Syntax:

  Password( <cName>, [<cValue>], [<nSize>], [<nMaxLen>] )  ---> cString

Arguments:

  <cName> is a character string for the name of the Password field.

  [<cValue>] is a character string that appears inside the Password field.

  [<nSize>] is a numeric value for the field size in number of characters.

  [<nMaxLen>] is a numeric value for the maximum number of characters
  allowed.

Returns: A character string consisting of the generated HTML tag.

Description:

  Generates Password Input form field, hiding the characters entered, by
  repeating astericks. The actual value entered is passed to the CGI program.

  The generated string is always returned. The string will be written
  to standard-out depending on the value of StopWrite().
  The default StopWrite() value is FALSE. Setting the StopWrite() value
  to TRUE will suspend the write to standard-out.

Examples:

  FormBeg()
    Password( "myPassword", "", 5, 10 )
    ...
    ...
    ...
  FormEnd()

Files: Library is ClipX.Lib

Online reference:  Mikodocs Guide To HTML - INPUT TYPE=PASSWORD tag


See Also: Input()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson