views:

137

answers:

1

I'm looking for a form validation framework that works best in both Windows (WPF using MVP) and Web (ASP.NET MVC).

I'm currently looking at three choices:

I like Fluent Validation as it looks a lot cleaner. The others, though, have been around longer.

Any other recommendations?

+1  A: 

In MVC apps I've found Fluent Validation very useful for more complex validations. DataAnnotations are often enough for simple validations in MVC.

UpTheCreek