Hey! I know this belongs in the ASP forum, but I couldn't find it so redirect me if need be.
I'm having some trouble with ASPUpload. I have to use it to upload files on GoDaddy (because they suck and don't allow users to upload files). Basically, I learned from a forum (
http://www.webmaster-talk.com/asp-fo...rm-please.html) that you have to change the Upload.Save comand to Upload.SaveASVirtual, in order to get around GoDaddy's restrictions.
But I have no idea what to do from here, since this isn't working and I have no clue what else I'm missing.
Any help on this issue that leads to a solution will quite possible lead to cookies. Or at least my undying thanks for making me get over an annoyance that's lasted for 2 days now >_<
<!-- AspUpload Code samples: UploadScript2.asp -->
<!-- Invoked by Form2.asp -->
<!-- Copyright (c) 2001 Persits Software, Inc. -->
<!--
http://www.persits.com -->
<HTML>
<BODY>
<%
Set Upload = Server.CreateObject("Persits.Upload")
Upload.SaveAsVirtual "/upload/"
%>
Files:<BR>
<%
For Each File in Upload.Files
Response.Write File.Filename & "= " & File.Path & " (" & File.Size &" bytes)<BR>"
Next
%>
<P>
Other items:<BR>
<%
For Each Item in Upload.Form
Response.Write Item.Name & "= " & Item.Value & "<BR>"
Next
%>
</BODY>
</HTML>