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>hiddenfld()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
HiddenFld()
Returns/writes HTML Hidden Input Text field
---------------------------------------------------------------------

Syntax:

  HiddenFld( <cName>, <cValue> )  --->  cString

Arguments:

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

  <cValue> is a character string value for the field.

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

Description:

  Generates Hidden input type object for a form. These text fields are not
  displayed on the form by the browser. They can be used to pass data to
  and from a CGI program and can be used by JavaScript  or VB scripts.
  Hidden fields are not hidden from the browsers View/Source option.

  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()
    HiddenFld( "hiddenField", "cLibTestForm" )
  FormEnd()

Alternate:

  htmlWrite( '<INPUT NAME="YourName" VALUE="YourValue" TYPE=Hidden">' )

Files: Library is ClipX.Lib

Online reference:  Mikodocs Guide To HTML - INPUT TYPE=HIDDEN


See Also: Input()

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