i need code that will protect website code that can be put on the webpages of a site thanks in advance!
views:
54answers:
3
A:
You don't understand the concept of a web server do you? You can't protect the user from seeing the content of the pages. See wget
drachenstern
2010-04-12 19:15:27
A:
If you are trying to protect the html of your site, it's not possible as outlined here. If it's something else you are trying to do, you need to add more details to your question.
rosscj2533
2010-04-12 19:15:46
+2
A:
Your server side code will not be visible to the browser, and your client side javascript can be obfuscated (but not hidden or made entirely unreadable).
Your HTML could be obfuscated by using a document.write statement and javascript along with escaped characters, but someone could simply view the source. There is no way to protect this, and in any case nothing to hide....
James Westgate
2010-04-12 19:21:23