Problem solved...

March 13, 2003 by Mike Mr.

All I had to do is put the resume browse control/text box in the same
form as the the first portion of my form with the basic info, name, e-mail,
phone number, address etc. I believe the reason this did NOT work the
first time is because I messed up the INPUT text box types! and I may
have omitted the filefield.

Moral of the story, make sure your type is correct and you include the filefield!:


<input type="file" size=30 name="Resume" filefield="Resume" tabindex="12" >

  <table border="0" cellspacing="0" cellpadding="3">
              <tr align="left">
                <td width="107" valign="top"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">First
                    Name: </font> </td>
                <td width="285" valign="middle"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">
                  <cfinput name="FirstName" type="text" size="25" tabindex="1" required="yes" message="The 'First name' field has to be filled in.">
                </font> </td>
              </tr>
               <tr align="left" valign="top">
                <td colspan="4"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;Resume: </font> <font size="-1" face="Verdana, Arial, Helvetica, sans-serif">
                  <input type="file" size="30" name="Resume" filefield="Resume" tabindex="12" >
                  <br>
                  <font size="-2">Recommended format
&quot;&lt;FirstName&gt;&lt;LastName&gt;&quot;.doc</font> </font> </td>
              </tr>
               <tr>
                <td colspan="4">
                  <div align="center"><font size="-1" face="Verdana, Arial, Helvetica, sans-serif">
                    <input type="submit" name="Submit" tabindex="13" value="Preview">
        &nbsp;&nbsp;
           
        <input name="Input" type="reset" tabindex="14" value="Clear" onClick="index_goBack();">
        &nbsp;&nbsp;
                  </font> </div>
                </td>
              </tr>
            </table>