Hi All,
I have this piece of code:
<FORM METHOD="POST" ENCTYPE="multipart/form-data" ACTION="uploadexmple.asp">
<TABLE BORDER=0>
<tr><td><b>Select a file to upload:</b><br><INPUT TYPE=FILE SIZE=50 NAME="FILE1"></td></tr>
<tr><td>
<INPUT TYPE=FILE SIZE=50 NAME="FILE2"></td></tr>
<tr><td>
<INPUT TYPE=FILE SIZE=50 NAME="FILE3"></td></tr>
<tr><td><b>Save To:</b>
Disk <INPUT TYPE=RADIO NAME="saveto" value="disk" checked>
Database <INPUT TYPE=RADIO NAME="saveto" value="database">
</td></tr>
<tr><td align="center"><INPUT TYPE=SUBMIT VALUE="Upload!"></td></tr>
</TABLE>
</FORM>
Which posts to uploadexmple.asp. My problem is i want to be able to include this file into an existing asp page which already has a form attribute. I have tried removing the form code from the code above and posting it to the existing page i have but i have had no luck. Anyone with any ideas?
Thanks
Mark
I have this piece of code:
<FORM METHOD="POST" ENCTYPE="multipart/form-data" ACTION="uploadexmple.asp">
<TABLE BORDER=0>
<tr><td><b>Select a file to upload:</b><br><INPUT TYPE=FILE SIZE=50 NAME="FILE1"></td></tr>
<tr><td>
<INPUT TYPE=FILE SIZE=50 NAME="FILE2"></td></tr>
<tr><td>
<INPUT TYPE=FILE SIZE=50 NAME="FILE3"></td></tr>
<tr><td><b>Save To:</b>
Disk <INPUT TYPE=RADIO NAME="saveto" value="disk" checked>
Database <INPUT TYPE=RADIO NAME="saveto" value="database">
</td></tr>
<tr><td align="center"><INPUT TYPE=SUBMIT VALUE="Upload!"></td></tr>
</TABLE>
</FORM>
Which posts to uploadexmple.asp. My problem is i want to be able to include this file into an existing asp page which already has a form attribute. I have tried removing the form code from the code above and posting it to the existing page i have but i have had no luck. Anyone with any ideas?
Thanks
Mark