Save Method

 Object: SoftArtisans.SAFile
 Syntax: Save
 Description: This method saves an uploaded file to the web server's hard disk using the user's original filename.

When you use the Save method, you must also use the Path property to set the path.

See also the Save method for the SAFileUp object.

Example:

	Set objFile = Server.CreateObject("SoftArtisans.SAFile")
	objFile.Path = "C:\Temp\"
	objFile.Create "DeleteMe.txt"
	objFile.Save
	... %>

 

Previous Page Next Page