Prevent Print

P

piecework

I would like to know how to prevent a customer from having the ability to print graphics from my web site?
 
T

Tom Pepper Willett

How do I stop people from downloading my graphics or code?

http://www.jamesshuggins.com/h/web1/how_do_i_stop_downloading.htm

http://www.jimcoaddins.com/protect.htm
--
=====================================================
Tom Pepper Willett [Microsoft MVP - FrontPage]
----------------------------------------------------------------------------
-------------------
Microsoft FrontPage:
http://www.microsoft.com/office/frontpage/prodinfo/default.mspx
http://msdn.microsoft.com/office/understanding/frontpage/

=====================================================
| I would like to know how to prevent a customer from having the ability to
print graphics from my web site?
 
J

Jon Spivey

The best you can do is make it difficult with some CSS, eg
<style type="text/css" media="print">
img{
display:none;
}
</style>

this will stop images being printed - anyone with knowledge could get around
it but it should slow some people down. Obviously there's nothing to stop a
guy saving the image or pulling it from his cache and then printing it off.
All the CSS does is stop the images printing when the user hits print.

Jon
Microsoft MVP - FP

piecework said:
I would like to know how to prevent a customer from having the ability to
print graphics from my web site?
 

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