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.
date.asp -
<%
sFilePath = Request.ServerVariables("PATH_TRANSLATED")
Dim oFSO: Set oFSO = Server.CreateObject("Scripting.FileSystemObject")
Dim oFile: Set oFile = oFSO.GetFile(sFilePath)
dteUpdated = oFile.DateLastModified
%>
<html>
<body>
Change this line and save it to change modified date.<br>
This page was last updated: <%=dteUpdated%>
</body>
</html>