Ejemplo n.º 1
0
        public static bool IsNullOrEmptyNoHtml(string value)
        {
            string text = WebHelper.NoHtml(value + "");

            if (string.IsNullOrEmpty(text))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }