@ian10 @Chris_Hofer
I did a quick google search on preventing an html url link from being downloaded. From my favorite site (stackoverflow), here is one of the responses:
"As I said in my answer, if they can view it, they can download it. If it's transferred to their web browser, they can save it. There is simply no way around this. "
You might be able to make it harder on them by adding the following to the link
<a href="#" oncontextmenu="return false;"> Link </a>
(just add the oncontextmenu part into the existing html code on the page. I have not tried this - just something I found.
Ron
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.