您好 我有一个自定义属性
public class NameAttribute : RegularExpressionAttribute
{
public NameAttribute() : base("abc*") { }
}
这适用于服务器端,但不适用于客户端,但是
[RegularExpressionAttribute("abc*",ErrorMessage="asdasd")]
public String LastName { get; set; }
适用于两者。我读了this,但它没有帮助。
非常感谢您的帮助。
谢谢
答案 0 :(得分:4)
您可能需要在DataAnnotationsModelValidatorProvider
中注册与此自定义属性相关联的Application_Start
:
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
RegisterRoutes(RouteTable.Routes);
DataAnnotationsModelValidatorProvider.RegisterAdapter(
typeof(NameAttribute), typeof(RegularExpressionAttributeAdapter)
);
}
您也可以结帐following blog post。
这是我用来测试它的完整例子。
型号:
public class NameAttribute : RegularExpressionAttribute
{
public NameAttribute() : base("abc*") { }
}
public class MyViewModel
{
[Name(ErrorMessage = "asdasd")]
public string LastName { get; set; }
}
控制器:
[HandleError]
public class HomeController : Controller
{
public ActionResult Index()
{
return View(new MyViewModel());
}
[HttpPost]
public ActionResult Index(MyViewModel model)
{
if (!ModelState.IsValid)
{
}
return View(model);
}
}
查看:
<script type="text/javascript" src="<%= Url.Content("~/scripts/MicrosoftAjax.js") %>"></script>
<script type="text/javascript" src="<%= Url.Content("~/scripts/MicrosoftMvcAjax.js") %>"></script>
<script type="text/javascript" src="<%= Url.Content("~/scripts/MicrosoftMvcValidation.js") %>"></script>
<% Html.EnableClientValidation(); %>
<% using (Html.BeginForm()) { %>
<%= Html.LabelFor(x => x.LastName) %>
<%= Html.EditorFor(x => x.LastName) %>
<%= Html.ValidationMessageFor(x => x.LastName) %>
<input type="submit" value="OK" />
<% } %>
加上我之前展示的Application_Start
注册。