Print Click

  • Thread starter Thread starter Don Hoisager
  • Start date Start date
D

Don Hoisager

How do I create a print icon, link on my web page that
will enable people to print page w/out using file/print???

Thanks
 
besides the plain text one that grw gave you you can modify it a little and
it will display a picture:
<form><input type="image" src="images/Print.gif"
onClick="window.print()"></form>
just put your print button in the images folder and change the name in the
above code to match the name of your picture.
 
Back
Top