File Upload in ASP?

G

Guest

Hello,

My file upload form works great as a .htm file. But when I save it as an
..asp file, it stops working. Our company requires all files to be in .asp, so
any ideas? I've included the html below.

Thanks
<html><head><title>Upload Form</title></head><body>

<form method="POST" enctype="multipart/form-data" action="--WEBBOT-SELF--">
<!--webbot bot="FileUpload" s-label-fields="TRUE"
b-reverse-chronology="FALSE" s-destination="Schedules/Sales/" s-category
s-assignedto s-reviewstatus b-process-metainfo="FALSE" s-builtin-fields
startspan --><input TYPE="hidden" NAME="VTI-GROUP" VALUE="1"><input
TYPE="hidden" NAME="_charset_" VALUE="windows-1252"><!--webbot
bot="FileUpload" endspan i-checksum="59017" --><p>
<input type="file" name="F1" size="20"><input type="submit" value="Submit"
name="B1"><input type="reset" value="Reset" name="B2"></p>
</form>

</body></html>
 
T

Thomas A. Rowe

You can not use any features that are processed by the FP run-time extensions on a page containing
server-side
scripting such as ASP, ASP. Net, PHP, etc. You will need to use a ASP File Upload component, such as
http://www.aspupload.com

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
G

Guest

Pretty much what I feared. Thanks much

Thomas A. Rowe said:
You can not use any features that are processed by the FP run-time extensions on a page containing
server-side
scripting such as ASP, ASP. Net, PHP, etc. You will need to use a ASP File Upload component, such as
http://www.aspupload.com

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top