vote up 0 vote down star

How to prevent to download the source code of page using File > Save as?

flag

0% accept rate

5 Answers

vote up 1 vote down

As a more constructive answer, if you're talking about stopping people downloading your javascript file, you can't, however you try obfuscating/confusing/packing the script text into something pretty much unreadable.

Try this javascript obfuscator. It seems to work pretty well!

As a note, this won't stop someone who is determined, but will certainly really slow them down.

link|flag
vote up 7 vote down
  1. Write server side code to translate requested material into a big flattened image
  2. Display image
  3. Slap yourself for writing said code and promise to never do it again
  4. Profit
link|flag
You forgot "3a ....." – Justin Johnson Oct 10 at 7:22
C'mon, I think this is a serious question which deserves a serious answer (Anyway, this is wicked funny :) ) – DR Oct 10 at 7:26
vote up 14 vote down

It's not possible and you shouldn't even bother trying it, because:

  • The users who realize, there is a source, will most likely have the knowledge to download it anyway.
  • The normal users, who are unaware of the whole source concept are only annoyed by the futile attemps to block the source ("Why is my right mouse button not working on this site? All I want to do is create a bookmark.")

Just look at Microsoft, Amazon, and Co., but also at sites like DeviantArt: All these businesses obviously spent a lot of effort (=money) into their sites, and they don't do anything to prevent the source access.

On the other hand I've seen many small private sites, with no real content or value other to the creator of the pages, which try to prevent accessing their source.

As a rule of thumb: Any kind of copy control technique, which harasses your legitimate customers, doesn't pay off and will damage your business in the long run.

link|flag
+1 for the rule of thumb. true words – Peter Parker Oct 10 at 14:50
vote up 0 vote down

You can't. The page is effectively already being downloaded when you view it in the browser. If you want to protect the contents, you might be able to obfuscate the source, and depending on what you are doing you might be able to make the page non-functional once it has been downloaded (ie making some behavior of the page rely on an Ajax request to your server). But there will always be workarounds.

link|flag
vote up 9 vote down

You cannot prevent this behavior. Even if you were to be able to prevent it in any particular browser, you are still delivering code content that browsers render for you, someone could just create a raw request and view the source.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.