Gets the date of the last change of a file.
<%
set FSO = Server.CreateObject("Scripting.FileSystemObject")
strfile = Request.ServerVariables("SCRIPT_NAME")
set f = FSO.GetFile( Server.MapPath(strFile) )
Response.write "Last update: " & f.DateLastModified
set f = Nothing
set FSO = Nothing
%>
![]()