SHOWING LATEST TUTORIALS
This tutorial demonstrates how to use the FileSystem object to view the contents of a server directory. It could easily be modified into a navigation or file-download application.
Building an upload file mechanism on a Web server can often require using a costly DLL. Tiago Halm's article shows you how to upload a file using only Active Server Page (ASP) code and Internet Explorer. Sample code is provided.
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.
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 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
This step-by-step 5-page tutorial teachs you how to allow image uploads to your site, using standard HTML and off-the-shelf ASP extensions.
Often you will need to display the contents of a file on your server. This article shows you what regular expressions to use to successfully display HTML, including automatically making any hyperlinks live.
The author writes "A CSV (Comma Separated Values file sometimes referred to as a flat file) is essentially a text file that has a comma delimiter between the table values and a unique line for each observation. While this is usually a means by which data
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 example code demonstrates how to link and display text files within a single document in ASP. Using the title of the text files as hyperlinks, when clicked the file name, the full contents of the document will be displayed. Very useful for making cop
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.
Initially developed to index ASP pages for a search capability, this article gives you a generic function to walk through your sub-folders using the FileSystemObject. Also discusses recursion and passing functions as parameters.
Following active server pages code delete a file. Example uses FileSystem object to delete the file. Do not forget to double check permissions for this operation.
Step-by-step tutorial on how to upload files (images, etc) from the client browser to the server hard disk using plain ASP pages. Complete application source code is available for download including the code to upload and display uploaded files to the use
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
Article on accessing drives, folders and files with ASP; iterating though drives, folders and files collections, reading content of a file and more. Also provides detailed listing of all properties and methods of FileSystemObject, Drive, Folder, File and
This article illustrates some great uses of the File System Object. It shows how to choose a drive to search, and then builds a listbox of all the folders on that drive. Choose a folder and it builds a listbox of all the files in that folder. Choose a Fil