hello, i am a first time asp user.
i am having trouble with this uploading file script.
for the html page with teh forms i am using this code:
<FORM METHOD="POST" ENCTYPE="multipart/form-data" ACTION="UploadScript1.asp">
<INPUT TYPE=FILE SIZE=60 NAME="FILE1"><BR>
<INPUT TYPE=FILE SIZE=60 NAME="FILE2"><BR>
<INPUT TYPE=FILE SIZE=60 NAME="FILE3"><BR>
<INPUT TYPE=SUBMIT VALUE="Upload!">
</FORM>
and on a seperate ASP page i have this script.
<BODY>
<%
Set Upload = Server.CreateObject("Persits.Upload.1")
Count = Upload.Save("D:\wes")
%>
<% = Count %> files uploaded.
</BODY>
ok, now heres the problem. when i go on ie to my ip address from the server i am running(which by the way is orion), and i click to upload a file it gets the info form mebut whn i click to upload it says filesuploaded, i go and check the folder where it is and there is nothing there. i know i am doing something wrong, but i am not sure. please help
thnks keko