This short example will allow you to dynamically create "static" html documents from an Access data on your web server using Active Server Pages. Basically after reading the contents of the db, instead of writing output to the browser it is written to the server.
There are several components on the market that allow your ASP application to handle file uploads. This article does not intend to replace those. There are times, however, that deploying a custom COM object is not possible. This article will show you how to write a VBScript class to handle file uploads.
The author writes "ASP has the ability to write .html or any other text based documents directly to a web server (You need to write the text output to a directory that has write authority). This enables the instantaneous publication of user input without the need for uploading files from a PC." This example code shows how to write text based documents to a server using ASP.
This article shows a simple way to upload files from client to server using VBS, IE and ADODB as multipart/form-data document. Full source code included.
This article describes how to build a very powerful, potentially destructive application using the File System Object. It should never be implemented in a production environment without ensuring that proper security precautions have been taken to maintain the integrity of the data contained on the web server.
If you want to check a file exists, you may use this code. First we are starting script creating a copy of File System Object. FSO has many useful methods. One of them is 'FileExists' that we will use it now.
Sometimes you need to copy files to another folder. First you should require to use FSO (File System Object.) CopyFile method of FSO is the simplest way to copy the files. Following sample code will copy some files to another folder.
If you want to copy some foldes to another folder, first create a File System Object. CopyFolder method will help you to copy folder to another folder.