Wasikton
11-16-2010, 09:24 AM
Hello, have a website that contains many excel files (.xls and .zip). I need to display the last modified date of these files. They currently reside on a webserver. I found this script in this forum, BUT, it only seems to work for .htm or really anything else except .xls or .zip files.
<html>
<head>
<title>Last Modified</title>
<script type="text/javascript">
function getLastMod(){
var myFrm = document.getElementById('myIframe');
var lastModif = new Date(myFrm.contentWindow.document.lastModified);
document.getElementById('LastModified').innerHTML = "Last Update: " + lastModif.toLocaleString();
}
</script>
</head>
<body>
<span id="LastModified"></span>
<iframe id="myIframe" onload="getLastMod()" src="DFC_new_page.htm" style="display:none;" width="352" height="137">
</iframe>
</body>
</html>
Also, when I place an .xls file inside the src= field it ends up opening the file.
HELP!!!! I am new to writing scripts and unfortunately only have Frontpage to use for this. Thank you!!!!!
<html>
<head>
<title>Last Modified</title>
<script type="text/javascript">
function getLastMod(){
var myFrm = document.getElementById('myIframe');
var lastModif = new Date(myFrm.contentWindow.document.lastModified);
document.getElementById('LastModified').innerHTML = "Last Update: " + lastModif.toLocaleString();
}
</script>
</head>
<body>
<span id="LastModified"></span>
<iframe id="myIframe" onload="getLastMod()" src="DFC_new_page.htm" style="display:none;" width="352" height="137">
</iframe>
</body>
</html>
Also, when I place an .xls file inside the src= field it ends up opening the file.
HELP!!!! I am new to writing scripts and unfortunately only have Frontpage to use for this. Thank you!!!!!