In some instances, you may want a default value to display in a form upon creation. You can configure a default value within the form. To accomplish this, you must set a value attribute defining the default value for input fields or labels. The following is an example:
<P>Company Name:<INPUT name=OBKey__233_1 value="ABC Company"></P>
In this example, the field would display ABC Company by default.
If you want to provide a default value in a text area box, you must specify the text within the field. The following is an example:
<P><TEXTAREA name=S1 rows=9 cols=140> Please enter text. </TEXTAREA></P>
In this example, Please enter text. is displayed in the field by default.