static string ParseCustomBlocks(XmlTag placeholder) { string activeTemplate = HttpContext.Current.Session["SageFrame.ActiveTemplate"] != null ? HttpContext.Current.Session["SageFrame.ActiveTemplate"].ToString() : "Default"; string FilePath = HttpContext.Current.Server.MapPath("~/") + "//" + activeTemplate + "//sections"; string fileName = GetAttributeValueByName(placeholder, XmlAttributeTypes.NAME); fileName = UppercaseFirst(fileName); FilePath = FilePath + fileName + ".htm"; HTMLBuilder hb = new HTMLBuilder(); StringBuilder sb = new StringBuilder(); sb.Append(hb.ReadHTML(FilePath)); return(sb.ToString()); }
static string ParseCustomBlocks(XmlTag placeholder) { string activeTemplate = HttpContext.Current.Session["SageFrame.ActiveTemplate"] != null ? HttpContext.Current.Session["SageFrame.ActiveTemplate"].ToString() : "Default"; string FilePath = "E://DotNetProjects//sftemplating//SageFrame//" + activeTemplate + "//sections"; string fileName = GetAttributeValueByName(placeholder, XmlAttributeTypes.NAME); fileName = UppercaseFirst(fileName); FilePath = FilePath + fileName + ".htm"; HTMLBuilder hb = new HTMLBuilder(); StringBuilder sb = new StringBuilder(); sb.Append(hb.ReadHTML(FilePath)); return sb.ToString(); }