Printing, Copy & Paste Blocking

G

Guest

I'd like to add a feature to my Frontpage website similar to what Amazon.com
and some other sites have, and that is the ability to prevent site visitors
from printing certain information as well as copying and pasting certain info.

I was told that this could be done through java scripting. Can someone
enlighten me and point me in the right direction?

Thank you,
Qrious
 
T

Tom Willett

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

http://continue.to/hope

http://www.digitalmidget.com/help/noclick/index.php

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

http://www.jimcosoftware.com/protect.aspx
--
===
Tom Willett
Microsoft MVP - FrontPage
---
FrontPage Support:
http://www.frontpagemvps.com/
===
| I'd like to add a feature to my Frontpage website similar to what
Amazon.com
| and some other sites have, and that is the ability to prevent site
visitors
| from printing certain information as well as copying and pasting certain
info.
|
| I was told that this could be done through java scripting. Can someone
| enlighten me and point me in the right direction?
|
| Thank you,
| Qrious
 
M

MD Websunlimited

Hi,

If you're doing this to protect the content it is not possible as the content can just be captured or the cache may be used.
 
J

Jon Spivey

Hi,
Blocking printing is done with css but while it may thwart the average user
anyone with a bit of savvy can get around it.
<style type="text/css" media="print">
#noPrint{
display:none;
}
</style>
<div id="noPrint">
....content won't print......
</div>

To my knowledge there's no way to prevent copy/paste
 
G

Guest

Thanks all for your quick responses. They were all informative.

I think Jon points is what I'm after. I want to thwart the average user.
If you go to the Amazon.com link supplied below, you'll get an idea of what
I'm trying to do. Amazon.com allows you to look at selected pages within a
book, however, they have it protected such that you can't copy & paste or
print the selected page. I'd like to do that with the photo galleries I have
on my site. Again, to thwart the average user.

Wow - Ater attempting to copy the web page address from the Amazon site, it
wouldn't even allow me to do that...so I'll type it manually.

http://www.amazon.com/gp/reader/078667024X/ref=sib_db_pt/104-4537758-4788759#reader-link

This link will bring up the front cover of the book, which you can't copy
either. For further support click on any of the other selected pages (Table
of Contents for example) and you'll find that you can't copy and paste those
either.

Thanks again,
 
S

Stefan B Rusynko

That 's because the "image" is not an image but an applet (flash or JAVA)

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| Thanks all for your quick responses. They were all informative.
|
| I think Jon points is what I'm after. I want to thwart the average user.
| If you go to the Amazon.com link supplied below, you'll get an idea of what
| I'm trying to do. Amazon.com allows you to look at selected pages within a
| book, however, they have it protected such that you can't copy & paste or
| print the selected page. I'd like to do that with the photo galleries I have
| on my site. Again, to thwart the average user.
|
| Wow - Ater attempting to copy the web page address from the Amazon site, it
| wouldn't even allow me to do that...so I'll type it manually.
|
| http://www.amazon.com/gp/reader/078667024X/ref=sib_db_pt/104-4537758-4788759#reader-link
|
| This link will bring up the front cover of the book, which you can't copy
| either. For further support click on any of the other selected pages (Table
| of Contents for example) and you'll find that you can't copy and paste those
| either.
|
| Thanks again,
|
|
|
| "Jon Spivey" wrote:
|
| > Hi,
| > Blocking printing is done with css but while it may thwart the average user
| > anyone with a bit of savvy can get around it.
| > <style type="text/css" media="print">
| > #noPrint{
| > display:none;
| > }
| > </style>
| > <div id="noPrint">
| > ....content won't print......
| > </div>
| >
| > To my knowledge there's no way to prevent copy/paste
| >
| > --
| > Cheers,
| > Jon
| > Microsoft MVP
| >
| > | > > I'd like to add a feature to my Frontpage website similar to what
| > > Amazon.com
| > > and some other sites have, and that is the ability to prevent site
| > > visitors
| > > from printing certain information as well as copying and pasting certain
| > > info.
| > >
| > > I was told that this could be done through java scripting. Can someone
| > > enlighten me and point me in the right direction?
| > >
| > > Thank you,
| > > Qrious
| >
| >
| >
 

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