I have a very simple webpage that normally prints correctly from IE on many different computers. The page itself is just an html table and a heading. I tried printing Google's homepage and it printed correctly, so this this issue is specific to my page.
The page looks correct in the print preview. However, when it comes out of the printer there are about 20 pages of what appears to be postscript and hexadecimal.
The first page has part of my page's query string (there are a bunch of parameters). This is followed by a bunch of lines that start:
@PJL COMMENT XRXbegin
@PJL COMMENT OID_ATT_JOB_OWNER "**user's name not included**'
@PGL COMMENT OID_ATT_JOB_NAME "** my url **
..etc
then
%!PS-Adobe-3.0
%%Title: **my url again**
%%Creator: PScript5.dll Version 5.2.2
..etc
then
%%BeginResource: file Pscript_WinNT_ErrorHandler 5.0 0
then
lot's of what I'm assuming is postscript then about 20 pages of hexadecimal
this is the html
<body onLoad="window.print();" style="font-size:150%">
<div style="width:750px">
<div>
<span class="fieldName">Email:</span>
<span class="fieldValue">an email address </span>
</div>
<div>
<span class="fieldName">Date:</span>
<span class="fieldValue">2/18/2012 8:16 PM</span>
</div>
</div>
<div class="nopass"><!-- clears floats --></div>
</body>