Contents of fileDetails.asp
<%
Dim strFDPathInfo, strFDPhysicalPath
strFDPathInfo = Request.ServerVariables("PATH_INFO")
strFDPhysicalPath = Server.MapPath (strFDPathInfo)

Dim objFDFSO, objFDFile
Set objFDFSO = CreateObject("Scripting.FileSystemObject")

Set objFDFile = objFDFSO.GetFile(strFDPhysicalPath)
%>
<P>
<HR>
<DIV STYLE="font-size:11; font-family: Verdana; ">
File Name: <B><%= objFDFile.Name %></B><BR>
Server Path: <B><%= strFDPathInfo %></B><BR>
Physical Path: <B><%= objFDFile.Path %></B><BR>
File Size: <B><%= objFDFile.size %> bytes</B><BR>
Date Created: <B><%= objFDFile.DateCreated %></B><BR>
Date Last Modified: <B><%= objFDFile.DateLastModified %></B><BR>
Date Last Accessed: <B><%= objFDFile.DateLastAccessed %></B><BR>
</DIV>