how can i stop people from saving my page
Moderator: General Moderators
how can i stop people from saving my page
Hi,
Anyone know how can i stop people from saving my page? i'm not talking about javascript right click disable, cause people can use save as to download the whole page. i want it like http://www.bn.com (barnes and noble) when people try to save the whole page, it will have an alert message saying "The web page could not be saved to the selected location."
Highly appericated if anyone can help
Thanks
Anyone know how can i stop people from saving my page? i'm not talking about javascript right click disable, cause people can use save as to download the whole page. i want it like http://www.bn.com (barnes and noble) when people try to save the whole page, it will have an alert message saying "The web page could not be saved to the selected location."
Highly appericated if anyone can help
Thanks
there is no way of doing that, as the nature of HTML is open and plain text.... and even if you used a javaapplet to decrypt something for view in applet only, there is always someone that will examine your applet and find your algorithms..
btw, barnes and noble did not prevent anything with my mozilla browser..
btw, barnes and noble did not prevent anything with my mozilla browser..
- twigletmac
- Her Royal Site Adminness
- Posts: 5371
- Joined: Tue Apr 23, 2002 2:21 am
- Location: Essex, UK
-
pistolfire99
- Forum Commoner
- Posts: 58
- Joined: Thu May 23, 2002 3:18 pm
That's a false statement. I've seen it done on a warez type site. I think it was with java. I e-mailed the owner asking him how but he wouldn't tell me. The rightclicking on the page was disabled along with the Tools > View Source menu and in Netscape it was the same case.Stoker wrote: there is no way of doing that
So it is possible but only an elite few know how to do it.
You can sort of do it...
Use a simple Flash button to launch a pop-up window.
You can trigger JavaScript from Flash.. simply enter JavaScript code instead of linking to a URl..
for example Get URL "javascript:open.window('page.php','','options');"
No one can see the JavaScript you use inside a Flash movie.
The page in the pop-up window needs the Right-Click disabled so in the <head> of your pages add this line of JavaScript....
document.oncontextmenu = new Function("return false");
Don't forget to use the following when opening the pop-up window..
"menubar=no, toolbar=no"
That gives you a 'more' secure site.. but it's not bullet-proof.
Use a simple Flash button to launch a pop-up window.
You can trigger JavaScript from Flash.. simply enter JavaScript code instead of linking to a URl..
for example Get URL "javascript:open.window('page.php','','options');"
No one can see the JavaScript you use inside a Flash movie.
The page in the pop-up window needs the Right-Click disabled so in the <head> of your pages add this line of JavaScript....
document.oncontextmenu = new Function("return false");
Don't forget to use the following when opening the pop-up window..
"menubar=no, toolbar=no"
That gives you a 'more' secure site.. but it's not bullet-proof.
I've seen this done on a phone logo's site, but I got around it by saving the target page from the page that linked to it.
As said above - if someone really wants what you have on your page, there is always a way and if people are anything like me, the more someone tries to block you, the more you'll try to get around it - generally just to see if you can.
As said above - if someone really wants what you have on your page, there is always a way and if people are anything like me, the more someone tries to block you, the more you'll try to get around it - generally just to see if you can.
