Preventing users from printing specific pages on a site

S

Sarah

Is there a way to secure specific pages on a Frontpage site so that users are
not able to print them?
 
T

Tom [Pepper] Willett

No.
--
Tom [Pepper] Willett
Microsoft MVP - FrontPage
"You're a daisy if you do!"
---
FrontPage Support:
http://www.frontpagemvps.com/
===
: Is there a way to secure specific pages on a Frontpage site so that users
are
: not able to print them?
 
T

Thomas A. Rowe

No. This is not a FP issue, this applies to all sites.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
http://www.Ecom-Data.com
==============================================
 
J

Jon Spivey

Hi Sarah,

You can make it harder for users to print sections by adding a print
stylesheet, for example
<style type="text/css" media="print">
..noPrint{
display:none;
}
</style>
then give anything you don't want to print the class .noPrint
<p class="noPrint">this text won't print</p>
<p>this text will print</p>

Anyone that's savvy about web development will be able to get around this
but it should defeat your average user. It's not possible to do any more
than this, you can't truely secure anything you put on the web

Cheers,
Jon
 

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