Hi,
I'm using the following code on my intranet site to let users know when a


<%
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("index.asp"))

 ' Get last modified property
dateModified = objFile.DateLastModified

' You can format it as you like using the FormatDateTime command
%>

Date Last Modified: <%= dateModified %><BR>
<%
' Kill our objects
Set objFile = Nothing
Set objFSO = Nothing
%>

Sherri D. Messiner
Seagate Technology
412-918-7171


____ � The WDVL Discussion List from WDVL.COM � ____
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
       Send Your Posts To: [EMAIL PROTECTED]
To change subscription settings to the wdvltalk digest version:
    http://wdvl.internet.com/WDVL/Forum/#sub

________________  http://www.wdvl.com  _______________________

You are currently subscribed to wdvltalk as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]

Reply via email to