Before beginning any form field mapping, the form must be created first. Regardless of whether you use a text or HTML editor, all information on the HTML E-Form must be contained within form tags.
The form tag must include <form method="POST"> for the E-Form to submit correctly into OnBase. If this tag is not included, the E-Form's Submit button acts as a reset button instead of submitting the form into the database.
The following is an example of the correct use of form tags:
<html> <head> <title>New Page 1</title> </head> <body> <form method="POST"> </form> </body> </html>