i am developing an asp.net site and i made validation for the web form using javascript and validation controls.
my question is: is it necessary before inserting data into the database to validate them in server side too or it’s not??
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, also validating on the server is good practice.
This is because any user can take your HTML page and modify it anyway they choose, removing any and all restrictions and limitations. Double checking on the server prevents such abuse.