Can't open .htm file created in Power Point

admin

Administrator
Staff member
A client sent file .htm file created in Power Point, but I can't open it in Preview or Design mode. When I ftp to server and try to see it in IE, I get 404 File not found error. How do I fix this problem?

Here's the code:
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=PowerPoint.Slide>
<meta name=Generator content="Microsoft PowerPoint 9">
<link rel=File-List
href="./Art%20and%20Dance%20Camp%20Web%20Pages_files/filelist.xml">
<link rel=Preview
href="./Art%20and%20Dance%20Camp%20Web%20Pages_files/preview.wmf">
<link rel=Edit-Time-Data
href="./Art%20and%20Dance%20Camp%20Web%20Pages_files/editdata.mso">
<link rel=OLE-Object-Data
href="./Art%20and%20Dance%20Camp%20Web%20Pages_files/oledata.mso">
<title>PowerPoint Presentation</title>
<!--[if gte mso 9]><xml>
<o:DocumentProperties>
<o:Author>CAROL LACON</o:Author>
<o:LastAuthor>CAROL LACON</o:LastAuthor>
<o:Revision>4</o:Revision>
<o:TotalTime>107</o:TotalTime>
<o:Created>2005-03-11T03:02:45Z</o:Created>
<o:LastSaved>2005-03-23T01:52:57Z</o:LastSaved>
<o:Words>373</o:Words>
<o:PresentationFormat>On-screen Show</o:PresentationFormat>
<o:Company>CISD</o:Company>
<o:Paragraphs>32</o:Paragraphs>
<o:Slides>3</o:Slides>
<o:Version>9.3821</o:Version>
</o:DocumentProperties>
<o:OfficeDocumentSettings>
<o:PixelsPerInch>80</o:PixelsPerInch>
</o:OfficeDocumentSettings>
</xml><![endif]-->
<link rel=Presentation-XML
href="./Art%20and%20Dance%20Camp%20Web%20Pages_files/pres.xml">
<meta name=Description content="22-Mar-05: ?Stories of Old? Art & Dance Camp">
<meta http-equiv=expires content=0>
<![if !ppt]><script>
<!--
var appVer = navigator.appVersion;
var msie = appVer.indexOf( "MSIE " );
var msieWin31 = (appVer.indexOf( "Windows 3.1" ) >= 0), isMac = (appVer.indexOf("Macintosh") >= 0);
var ver = 0;
if( msie >= 0 )
ver = parseFloat( appVer.substring( msie+5, appVer.indexOf ( ";", msie ) ) );
else
ver = parseInt( appVer );

path = "./Art%20and%20Dance%20Camp%20Web%20Pages_files/error.htm";

if( msie>=0 && ( (isMac && ver>=5)||(!isMac && ver>=4) ) )
window.location.replace( './Art%20and%20Dance%20Camp%20Web%20Pages_files/frame.htm'+document.location.hash );
else
{
if ( !msieWin31 && ( ( msie >= 0 && ver >= 3.02 ) || ( msie < 0 && ver >= 3 ) ) )
window.location.replace( path );
else
window.location.href = path;
}
//-->
</script><![endif]>
</head>

<frameset>
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>

</html>
 
Back
Top