CF Data Input Forms
A typical way to build a CF based data input form is to create a typical HTML form and assign the appropriate field names as attributes within your form.
<input type=“text” name=“studentID” maxlength=“10”>
<input type=“text” name=“studentName” maxlength=“25”>
*Notice that the names of these two inputs correspond to the field names used in the previous example.