Home
Main Introduction Features Constants Statements Database Objects Parser Serial-Communication Samples Misc
Misc>HTML Form Tag Declaration
Caravan Business Server>Help>Misc>HTML Form Tag Declaration
Syntax HTML form declaration has to follow a specific syntax.
<FORM action="HTML page name" encType="multipart/form-data" method=post name="Form name">
Text Conventions
Usage of bold text in Caravan script syntax indicates that the text needs to be replaced with the real code. For example HTML Page Name will have to be replaced in your actual code with the name of the file, say, schcustbal.html and Form Name is to be replaced by the name of the form, say Customer Balance.
Sample If the syntax is shown as
<FORM action="HTML page name" encType=multipart/form-data method=post name="Form name">

The real code may be written as
<FORM action ="schcustbal.html" encType=multipart/form-data method=post name="Customer_Balance">

schcustbal.html - Name of the web page.Customer_Balance - Name of the form.
Back