Displaying the date last modified is a simple thing to do. All
it takes is calling up the ol File Scripting Object and there you have it! The
last modified date, DYNAMICALLY! Every time the file is modified this info is
written into the file. The FSO knows just how to read that for you.
<%
Dim oFSO,oFile,dMod
Set oFSO=Server.CreateObject("Scripting.FileSystemObject")
'BE SURE TO CHANGE THE NAME IN THE NEXT LINE!!
Set oFile=oFSO.GetFile(Server.MapPath("FILE.asp"))
dMod=oFile.DateLastModified
Set oFSO=Nothing
Set oFile=Nothing
Response.Write dMod
%>