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.
FUNCTION Main()
DIM oFSO
DIM oTextFile
'------ Set up text file
IF oFSO.FileExists("FILENAME.EXT") THEN
oFSO.DeleteFile("FILENAME.EXT")
END IF
SET oTextFile = oFSO.CreateTextFile("FILENAME.EXT")
oTextFile.Close
SET oFSO = nothing
SET oTextFile = nothing
Main = DTSTaskExecResult_Success
END FUNCTION