摘要: 此文只作记录 1 public class MaxWordsAttribute : ValidationAttribute 2 { 3 4 public MaxWordsAttribute(int maxWords) 5 : base("{0} 字符串过长") 6 { 7 _maxWords = maxWords; 8 } 9 private readonly int _maxWords;10 11 protected override Validation... 阅读全文
posted @ 2013-09-03 17:13 Jones.Zhao 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 先看示例代码: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Web.Mvc; 6 using System.Web.Routing; 7 8 namespace MvcApplicationWeb 9 {10 public static class HtmlExtensions11 {12 public static MvcHtmlString TestHtml(this HtmlHelpe... 阅读全文
posted @ 2013-09-03 16:38 Jones.Zhao 阅读(2493) 评论(1) 推荐(0) 编辑