我会介绍如何连接到ASP.NET MVC 2的客户端验证扩展,以便你可以在客户端上运行JavaScript验证逻辑。
我将创建一个PriceAttribute来验证某个值是否大于指定的价格,并且这个价格必须以99分结束,因此$20.00是无效的值,$19.99是有效的。下面是这个属性的代码:
publicclass PriceAttribute : ValidationAttribute {
publicdouble MinPrice { get;set; }
publicoverridebool IsValid(object value) {
if (value == null) {
returntrue;
}
var price = (double)value;
if (price < MinPrice) {
returnfalse;
}
double cents = price - Math.Truncate(price);
if(cents < 0.99 || cents >= 0.995) {
returnfalse;
}
returntrue;
}
}
注意如果值为空,返回的值是true,这个属性不会验证字段是否需要。我会在RequiredAttribute中验证值是否需要。它允许我将属性放在可选的值上,当用户将这个字段留为空时显示一个错误。
我们可以创建一个视图模型,然后应用这个属性到模型上进行快速测试,下面是这个模型的代码:
publicclass ProductViewModel {
[Price(MinPrice = 1.99)]
publicdouble Price { get;set; }
[Required]
publicstring Title { get;set; }
}
我们再快速地创建一个视图(Index.aspx)显示和编辑窗体:
<%@ Page Language="C#"Inherits="ViewPage
" %>
<% using (Html.BeginForm()) { %>
<%= Html.TextBoxFor(m => m.Title) %>
<%= Html.ValidationMessageFor(m => m.Title) %>
<%= Html.TextBoxFor(m => m.Price) %>
<%= Html.ValidationMessageFor(m => m.Price) %>
<inputtype="submit"/>
<% } %>
现在我们只需要一个有两个行为的控制器,一个编辑视图,另一个接收提交的ProductViewModel。
[HandleError]
publicclass HomeController : Controller {
public ActionResult Index() {
return View(new ProductViewModel());
}
[HttpPost]
public ActionResult Index(ProductViewModel model) {
return View(model);
}
}
我们还没有开启客户端验证,下面来看看当我们查看这个页面并提交一些值时会发生什么。
'