Hola.. espero que te sirva este code:
Cita: <%
Dim objFSO
Dim objFile
Dim dateModified
' Creates the object and assigns it to our variable.
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
' Get access to the file
Set objFile = objFSO.GetFile(Server.MapPath("modified.asp"))
' Get last modified property
dateModified = objFile.DateLastModified
' You can format it as you like using the FormatDateTime command
%>
This file was modified on the date and time below:<BR>
You can write out the date as is...<BR>
<%= dateModified %>;<BR>
<BR>
<%= FormatDateTime(dateModified, 1) %>; at <%= FormatDateTime(dateModified, 3) %><BR>
<%
Set objFile = Nothing
Set objFSO = Nothing
%>
}
Saludos