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?