i want to be able to minify (remove all white space) to any page provided to the end-user. the thing that bothers me is that all ajax calls is visible to the end-user and was wondering if i minified it if that would minimize the security treat and if i removed that and class files out of the www and put them elsewhere if the end user would still be able to access it or do damage or help with security
thanks
While obfuscatiing your output won’t provide much in the way of security, you can achieve what you want by wrapping your code in Output Buffering and running it through your own obfuscation filter before returning it to the client.