In the previous versions on ASP.NET MVC, you could use ModelState.AddModelError("**_FORM**", "error")
to make an error on the form-level instead of a property-level. This seems not to work anymore with the new RC of ASP.NET MVC 2.
Is there another way how to do it? I use <%= Html.ValidationSummary() %>
at my View-file...