Example #1
0
        private static String GetHtmlStr(String value)
        {
            value = ExString.SafeTrim(value);

            if (String.IsNullOrEmpty(value))
            {
                return("&nbsp");
            }
            else
            {
                return(value);
            }
        }