using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FLocal.IISHandler.designs { class Lite : IDesign { public string GetFSName(string template) { return System.IO.Path.Combine("Lite", template); } string FLocal.Common.IOutputParams.preprocessBodyIntermediate(string bodyIntermediate) { return bodyIntermediate. Replace("", "", "\">"). Replace("", ""); } public string ContentType { get { return "text/html"; } } public bool IsHuman { get { return true; } } } }