Esempio n. 1
0
        /// <summary>
        /// Gets an HTML template file as a string, based on the template name provided
        /// </summary>
        /// <param name="templateName">Name of the temaplte to loead</param>
        /// <returns>String representing the HTML template file contents</returns>
        public static string GetHtmlTemplate(string templateName)
        {
            string template = String.Empty;

            string templatesPath = FilePathSystem.GetRootFilePath("HTMLTemplates", templateName, ".html");

            if (File.Exists(templatesPath))
            {
                using (StreamReader r = new StreamReader(templatesPath))
                {
                    template = r.ReadToEnd();
                }
            }

            return(template);
        }