Greetings all,


I am working on PERL scripts that generate some simple web pages.  I've
created the web page graphics in Microsoft Publisher, and then copied
the HTML into a PERL script.  When I use Firefox to display/run the
script everything works as it should.  When I use IE I get a blank page.




I'm using Apache on a Linux box to serve the page.



I believe that IE is just not showing the images.  If I add text or even
form controls they will display but images won't.  A test script
containing the HTML from MS publisher is below.



Any ideas what might be wrong?



Thanks for looking...



Rz





#!/usr/bin/perl



use HTTP::Headers;

use CGI;



##--Get the query parameters--##

$query = CGI->new();





##---The page-----##



$headers = HTTP::Headers->new(

      "Content-type" => "text/html",

      Expires => 0,

      Pragma => "no-cache",

      "Cache-Control" => "no-cache, must-revalidate");

print $headers->as_string() . "\n";





print <<_END_OF_TEXT_



<html xmlns:v="urn:schemas-microsoft-com:vml"

xmlns:o="urn:schemas-microsoft-com:office:office"

xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"

xmlns="http://www.w3.org/TR/REC-html40";>



<head>

<meta http-equiv=Content-Type content="text/html; charset=iso-8859-1">

<link rel=File-List href="junk2_files/filelist.xml">

<!--[if !mso]>

<style>

v\:* {behavior:url(#default#VML);}

o\:* {behavior:url(#default#VML);}

b\:* {behavior:url(#default#VML);}

.shape {behavior:url(#default#VML);}

</style>

<![endif]-->

<title>Blank</title>

<style>

<!--

 /* Style Definitions */

ol

      {margin-top:0in;

      margin-bottom:0in;

      margin-left:.25in;}

ul

      {margin-top:0in;

      margin-bottom:0in;

      margin-left:.25in;}

@page

      {size:8.5in 11.0in;}

-->

</style>

<!--[if gte mso 9]><xml>

 <o:shapedefaults v:ext="edit" spidmax="3075" fill="f" fillcolor="white
[7]"

  strokecolor="black [0]">

  <v:fill color="white [7]" color2="white [7]" on="f"/>

  <v:stroke color="black [0]" color2="white [7]">

   <o:left v:ext="view" color="black [0]" color2="white [7]"/>

   <o:top v:ext="view" color="black [0]" color2="white [7]"/>

   <o:right v:ext="view" color="black [0]" color2="white [7]"/>

   <o:bottom v:ext="view" color="black [0]" color2="white [7]"/>

   <o:column v:ext="view" color="black [0]" color2="white [7]"/>

  </v:stroke>

  <v:shadow color="#ccc [4]"/>

  <v:textbox inset="2.88pt,2.88pt,2.88pt,2.88pt"/>

  <o:colormenu v:ext="edit" fillcolor="blue [1]" strokecolor="black [0]"

   shadowcolor="#ccc [4]"/>

 </o:shapedefaults><o:shapelayout v:ext="edit">

  <o:idmap v:ext="edit" data="1"/>

 </o:shapelayout></xml><![endif]-->

</head>



<body link="#0066FF" vlink="#6633CC" style='margin:0'>



<div style='position:absolute;width:7.9319in;height:.9423in'>

<!--[if gte vml 1]><v:rect id="_x0000_s1034"
style='position:absolute;left:180pt;


top:39pt;width:147pt;height:27.75pt;z-index:3;mso-wrap-distance-left:2.8
8pt;

 mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;

 mso-wrap-distance-bottom:2.88pt' o:preferrelative="t" filled="f"
fillcolor="white [7]"

 stroked="f" strokecolor="black [0]" o:cliptowrap="t">

 <v:fill color2="white [7]"/>

 <v:stroke color2="white [7]">

  <o:left v:ext="view" color="black [0]" color2="white [7]"/>

  <o:top v:ext="view" color="black [0]" color2="white [7]"/>

  <o:right v:ext="view" color="black [0]" color2="white [7]"/>

  <o:bottom v:ext="view" color="black [0]" color2="white [7]"/>

  <o:column v:ext="view" color="black [0]" color2="white [7]"/>

 </v:stroke>

 <v:imagedata src="junk2_files/image298.jpg" o:title="image3241"/>

 <v:shadow color="#ccc [4]"/>

 <v:path o:extrusionok="f" insetpenok="f"/>

 <o:lock v:ext="edit" aspectratio="t"/>

</v:rect><![endif]--><![if !vml]><span
style='position:absolute;z-index:3;

left:240px;top:52px;width:196px;height:37px'><img width=196 height=37

src="junk2_files/image298.jpg" v:shapes="_x0000_s1034"></span><![endif]>

</div>



</body>



</html>







_END_OF_TEXT_

;






NOTICE:  This email message is for the sole use of the intended recipient(s) 
and may contain confidential and privileged information.  Any unauthorized 
review, use, disclosure or distribution is prohibited.  If you are not the 
intended recipient, please contact the sender by reply email and destroy all 
copies of the original message.

Reply via email to