ClickaNerd - Web Hosting Question - Javascript Hiding?

When using a javascript to validate form data, is their anyway to hide the code from being downloaded to a local PC. We can accomplish this in .asp but not javascript.<br />
 

mybadluck22

New Member
No, javascript is run client side, ASP is run server side. Using javascript to validate form data is insecure, and should be done server side. Javascript can be used for convenience, but you should still check it server side as well.
 
Top