1
可能重複:
ASP.net MVC - Custom attribut error message with nullable properties我可以在MVC4中替換整數字段的默認驗證消息嗎?
我可以更換默認的驗證消息整型字段?我想本地化它。 (對於INT: 「字段ID必須是數字。」)
可能重複:
ASP.net MVC - Custom attribut error message with nullable properties我可以在MVC4中替換整數字段的默認驗證消息嗎?
我可以更換默認的驗證消息整型字段?我想本地化它。 (對於INT: 「字段ID必須是數字。」)
您可以使用ErrorMessageResourceName屬性:
[Required(ErrorMessageResourceName = "SomeResource")]
[StringLength(30, ErrorMessageResourceName = "SomeOtherResource")]
public string Name { get; set; }
您可以結帳這個blog post的一個例子。
針對這一
如何申請它整數驗證?
首先你是如何驗證的整數?向我們展示一些代碼。
如果您正在使用正則表達式,然後使用
[RegularExpression("pattern", ErrorMessageResourceName = "SomeResource")]
,或者如果您使用的是自定義屬性,你可以以類似的方式使用。
如何申請它整數驗證? –