Hello
I was wondering if you guys know howto get the validationsummary "title" from resouce-file?
got this atm:
Html.ValidationSummary("Information missing.")
For my validation I use stuff like:
[Required(ErrorMessageResourceType=typeof(Resources), ErrorMessageResourceName="UsernameRequired")]
public object Username { get; set; }
How can I fix that?
/M