Esempio n. 1
0
        public static string AddTagContent(string tagContent)
        {
            string rtnVal = string.Empty;

            var proxy = new BusinessProxy();

            try
            {
                //GenerateJqueryErrorForTesting();

                rtnVal = proxy.AddTagContent(tagContent);
            }
            catch (Exception ex)
            {
                Log.Error(ex);
            }

            return(rtnVal);
        }