Beispiel #1
0
        /// <summary>
        /// 根据模板名称获取模板信息
        /// </summary>
        /// <returns></returns>
        private string GetHtmlsByTempletName(string name, string Id)
        {
            string          strs       = "";
            C_TempletApp    templetapp = new C_TempletApp();
            C_TempletEntity templet    = templetapp.GetFormByName(name);

            if (templet != null)
            {
                string   templets = System.Web.HttpUtility.HtmlDecode(templet.F_Content);
                TempHelp temphelp = new TempHelp();
                strs = temphelp.GetHtmlPages(templets, Id);
            }
            return(strs);
        }