in reply to Encrypt web files!
Once the page on the client-side the browser, it's not Perl's problem. It's HTML and JavaScript problem.
You can use JavaScript to disable right click, which's breakable, however. In IE, I think it is:
function click(){ if (event.button==2){ alert("Oops, you can't do that."); return false; } }
The code is different in Netscape.
You could also hide your HTML in a JavaScript file, so when view source people will see the links to the javascript files, not the content.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Encrypt web files!
by bobn (Chaplain) on Jul 24, 2003 at 12:16 UTC | |
by erasei (Pilgrim) on Jul 24, 2003 at 13:07 UTC | |
|
Re: Re: Encrypt web files!
by hardburn (Abbot) on Jul 24, 2003 at 13:32 UTC |