I have just finished up an online form using ASP.net MVC3 with unobtrusive. I have all the standard validation on the form fields, such as Required fields, date formats, etc. Now I am wondering if there is any recommended 'advanced' validation I should do to safeguard against SQL injection, etc. For example, I have several textareas and the only validation on them is that they are required.
Please let me know what you recommend, or even better, a link to a reference with form validation recommendations.
EDIT: I am not looking for tutorials on HOW to do validation, just looking for recommendations on WHAT to validate. For example, I have textboxes for names and dates, textareas for large comments, etc. All the basic validation is done and working great. I guess my main concern right now is guarding against SQL injection. I will look into reg ex validation for this. Thank you.
Thank you for reading.