0

我试图在使用 asp.net mvc 填写表单时本地化验证错误消息。
我能够本地化出现在模型中的表单字段的消息,但有些消息我在模型和 javascript 文件中都找不到。
然后我在以下链接中找到了问题的解决方案:
http ://weblogs.asp.net/imranbaloch/archive/2013/03/31/localizing-default-error-messages-in-asp-net-mvc-and -web-form.aspx
现在的问题是我想知道系统具有的键,例如 [FieldMustBeANumber],因此我可以使用上面链接中的解决方案对它们进行本地化。
谢谢你。

4

1 回答 1

0

我最终在模型中写了错误消息

[Required(ErrorMessage="The field \"{0}\" is required.")]
[Display(Name = "Comment text.")]
public string Text { get; set; }
于 2013-08-04T23:47:20.817 回答