public static MvcHtmlString CKTextBox(this HtmlHelper u, string name, object value)
 {
     return u.CKTextBox(name, value == null ? "" : value.ToString());
 }
 public static MvcHtmlString CKTextBox(this HtmlHelper u, string name, string value)
 {
     return u.CKTextBox(name, string.IsNullOrEmpty(value) ? "" : value.ToString(), null);
 }
 public static MvcHtmlString CKTextBox(this HtmlHelper u, string name)
 {
     return u.CKTextBox(name, null);
 }