Quote:
Originally Posted by grotgod
Hi aashishn86;
The quick answer is that ASP Classic does not have a native (built-in) component to upload or download files to the server.
To do this you have to use a third party component or write your own.
grotgod,
The point of the "How to upload whole files with ASP" article (which I wrote) was to say that you didn't need a third-party component, it can be handled with just classic ASP. There is no hard set-in-stone limit to ASP's capability, you just need to write it yourself.
aashishn86,
The part about the delimiter in the article was just trying to explain how a user's browser sends form data to the server. It separates each form input (whether a text input or a select drop down, or file input or whatever) with a string of characters that appear arbitrary to me. The script I wrote in the article first figures out what that string is (because it's not always the same), then searches through all the submitted data for that string because each input starts with it. Does this make sense? Please let me know if there is anything else that was hard to understand.
Jared