View Code 1 public static MvcHtmlString FckText(this System.Web.Mvc.HtmlHelper helper, string name, string width = "1150", string height = "300") 2 { 3 if (string.IsNullOrEmpty(name)) 4 { 5 return MvcHtmlString.Create("name属性为必须"); 6 } 7 ... Read More