tags:

views:

44

answers:

2

I used this code to print the current page:

<form>
<input type="button" value="Print" onClick="window.print();" /> 
</form>

but when I view it using universal document converter. It has this url in the upper right corner. How do I get rid of it?

+1  A: 

I believe that's a browser by browser setting and can't be set through the page. I'd love it if someone could prove me wrong, though. :)

theIV
Let's just wait for the answer. I believe that there are lots of monsters in this site, who can answer my question:)
Sadly, looks like he's right: http://www.mintprintables.com/print-tips/header-footer.php
cmptrgeekken
A: 

Just as theIV says it depends on the browser.

One way of doing it would be to convert it to a PDF that can then be downloaded by the person wanting to print it. Maybe a starting point is this HTML to PDF converter online - try searching for more though.

WmasterJ