Download pdf facility?

  • Thread starter Thread starter steve sutherland
  • Start date Start date
S

steve sutherland

Hi
I have completed a website but have seen some which do
not allow you to download or save as images when you are
viewing them...I would like to add that feature to my
site...is this possible using Frontpage 2000??? I have
been advised that this isn't possible...I also
want to include the facility to download a pdf brochure
from my website and could do with some advice on this
also...Any help would be gratefully recieved!

Steve
 
You can use JavaScript to block right-click, but if someone want your
images, there are many easy way to bypass the right click scripts.

As for PDF files, just import into your current open FP web and then create
a link to it.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Insert the following code into the body of the page near the top.

<SCRIPT language=JavaScript>
<!--
function click() {
if (event.button==2) {
alert(' Sorry the right button has been blocked !');
}
}
document.onmousedown=click
// -->
</SCRIPT>

This should stop the right click.
 
But it protects nothing!

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Back
Top