Hidden Field
From the menu go to: Insert > Forms >Hidden Field

The hidden field creates controls that are not rendered but whose values are submitted with a form. You use this control type to store information between client/server exchanges that would otherwise be lost due to the stateless nature of HTTP. The INPUT element is used to create a hidden control.

Example:

<input type="hidden" name="FirstName" value="Roger">

See Also: Form Samples