Another option is when the user clicks the print button while viewing the web page, you can make the printer print a different page or document altogether. If you print this page using the standard print browser it will automatically print my printer friendly page. Simply copy the below code into the <head> section of your web page. Change printversion.doc to the file or web page intended to be used for printing. The file can be virtually any format (pdf, Word, etc). When the user selects "Print", the printer will look for this file and print it instead of the current page. For example: Import a Word document into the root of your web site. Then copy the code below under the <head> section of code as mentioned above, changing the red text to the name of your document. <link rel=alternate media=print href="printversion.doc"> Alternatively, to make it print another web page you prepared for printing, without the user being directed to it, just use this code: <link rel=alternate media=print href="print_wp.htm"> ...i.e. telling it where you have put the page you want to print. |