Zadnja spremeba:
<%
Dim oFS
Dim sPath
Dim oFile
Set oFS = Server.CreateObject("Scripting.FileSystemObject")
sPath = Request.ServerVariables("Path_Translated")
Set oFile = oFS.GetFile(sPath)
response.write FormatDateTime(oFile.DateLastModified,2)
Set oFile = Nothing
Set oFS = Nothing
%>