新mvc中的数据注释模型绑定器

时间:2010-10-18 09:49:28

标签: asp.net asp.net-mvc data-annotations modelbinders

您好我们正在尝试升级我们的项目以在最新版本的VS 2010中工作,并且我遇到了旧的数据注释模型绑定器的问题。

Dim modelBinder = New DataAnnotationsModelBinder()

modelBinder.InvalidValueFormatter = _   函数(propDescriptor As PropertyDescriptor,value As String,displayName As String)_                 String.Format(“'{0}'ärrejktrektvärdeför{1}。”,value,displayName)

        ModelBinders.Binders.DefaultBinder = modelBinder

我想要做的是覆盖错误数据输出的默认错误消息(“值{{0}'对{1}字段无效。)

我尝试让默认的模型绑定器为其分配一个新的错误消息

1 个答案:

答案 0 :(得分:1)

我发现这篇关于这个问题的帖子解决了我的问题:

http://forums.asp.net/p/1512140/3606268.aspx#3606268