Printer setting programmaticaly?

liunx

Guest
Hi,<br />
I need a statement on my page to force the printer to print in land scape for printting via IE-browser (when user clicked on File-->Print). I got following but does not <br />
work on IE or i may missed something.<br />
<br />
<head> <br />
<style type="text/css"> <br />
@page {size: 8.5in 11in landscape; margin: 0.5in} <br />
</style> <br />
</head><br />
<br />
Thanks.<!--content-->have a look here (<!-- m --><a class="postlink" href="http://www.course.com/Download">http://www.course.com/Download</a><!-- m --> <!--more-->s/newperspectives/crweb3/documents/t07.cfm#css2) about controlling printing with css<br />
<br />
ahh i see where you're going wrong, you're trying to fit in potrait and landscape into the size, just use this: <br />
@page {size: landscape; margin: 0.5in}<!--content-->
 
Back
Top