
An object available to access a computer's file system,this is the FileSystemObject. Folders,drives and text files can be accessed using this object. <% fname = "MyFile.txt" ctf.WriteLine "Some example text" ctf.Close set fs = nothing %>
The example below shows how to create a text file using FileSystemObject's CreateTextFile method.
set fs = CreateObject("Scripting.FileSystemObject")
Set ctf = fs.CreateTextFile (server.MapPath("/temp") & "/" & fname,True)
Asp Discussion
- - How to upload files
- - Offshore outsourcing comp
- - Example of editing in Dat
- - Example of Inserting and
- - Example of Image Upload




