Printing

J

Jeff

I want to display a print button on my webpages that will
allow visitors to print the webpage they are on without
clicking file then print. What is the commend I need to
use to do this?
 
J

Jeff

-----Original Message-----
I want to display a print button on my webpages that will
allow visitors to print the webpage they are on without
clicking file then print. What is the commend I need to
use to do this?
.
And I want to use a picture of a printer to do it
 
C

chris leeds

this should do it:
<script language=Javascript1.2>
var message = "Print Page";
function printpage() {
window.print();
}
document.write("<form><input type=button "
+"value=\""+message+"\" onClick=\"printpage()\"></form>");
</script>
copy the <script>and</script> and everything inbetween then in FrontPage set
your cursor where you want your print button to appear and click insert/ web
component/ advanced control/ html and paste it into that dialog box.
You should probably paste the above script into notepad then copy it from
notepad and into the web component dialog box to be safe.
HTH
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top