1

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?

user225269
  • 10,743
  • 69
  • 174
  • 251
  • 1
    So many duplicates: http://stackoverflow.com/questions/2192806/can-i-remove-the-url-from-my-print-css-so-the-web-address-doesnt-print http://stackoverflow.com/questions/585254/how-to-remove-the-url-from-the-printing-page – user229044 Feb 27 '10 at 04:46

2 Answers2

1

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
  • 25,434
  • 5
  • 54
  • 58
0

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.

JeroenEijkhof
  • 2,232
  • 2
  • 25
  • 39