Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
'------ Set up FTP script file
IF oFSO.FileExists("C:\FTP.ftp") THEN
oFSO.DeleteFile ("C:\FTP.ftp")
END IF
SET oTextFile = oFSO.CreateTextFile("C:\FTP.ftp", True)
oTextFile.WriteLine("login")
oTextFile.WriteLine("password")
oTextFile.WriteLine("lcd C:\") '-- Change local dir
oTextFile.WriteLine("cd /subdir") '-- Change remote dir
oTextFile.WriteLine("put " + Trim(DTSGlobalVariables("File1").Value))
oTextFile.WriteLine("put " + Trim(DTSGlobalVariables("File2").Value))
oTextFile.WriteLine( "quit")
oTextFile.Close