Is there some best practice how I should validate forms in Silverlight? Some framework which contains validators and shows error messages next to form elements if the values are incorrect?
Because right now I have to create a blank text block next to each form element to hold error messages and I am also validating the forms with long nested if else structures. There surely must be a better, more reusable and less repetitive way?
Thank you.