Server Side Processing To Cluster The Content (or Prevent The Content) Of View Page Source On Browser
I have a simple website with some basic scripts just like this: Welcome to my website but a user can view page source --oops &l
Solution 1:
You can't hide javascript, html, or css from users. You can proccess out in server like php some code but you need to return html. The only way to complicate user's reading of your code, you try minimize javascript/css/html code. YUI compressor can help you:
This makes your code more difficult to read, but the behaviour is the same.
Good luck.
Post a Comment for "Server Side Processing To Cluster The Content (or Prevent The Content) Of View Page Source On Browser"