Click here to Skip to main content
15,891,033 members
Articles / Web Development / ASP.NET
Tip/Trick

Simple templating engine

Rate me:
Please Sign up or sign in to vote.
1.13/5 (6 votes)
23 Oct 2013CPOL 15.4K   3   7
Using reflection to build a templating engine

Introduction 

A simple micro templating engine that uses data objects and reflection to effectively populate a template.

Background  

On several occasions I have come across the need for a tiny and efficient yet simple templating engine to print reports, articles, snippets etc within larger systems where a full blown CMS is not warranted. Hence I came up with this solution where you can populate an object and pass it with a template  to a template engine that fleshes out the template. This has worked quite well for me and I would like to share it with any one who has a similar need.

Using the code

The idea behind the templating engine is to use a data object to populate a template. The properties themselves will be markers in the template and the values of these properties will flesh out  the template.

At the heart of the engine is the below method that will use reflection to iterate through the properties and replace the tags/markers in the template.

C++
public string MergeObject(object MergeObject, string tempDoc)
{
    string result = tempDoc;
    Type t = MergeObject.GetType();
    PropertyInfo[] props = t.GetProperties();
    foreach (PropertyInfo prp in props)
    {
        if (MergeObject != null)
        {
           result = Regex.Replace(result, "<"+prp.Name+">", 
                             prp.GetValue(MergeObject, null).ToString());                     
        }
    }
    return result;
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Infosolvex Solutions Inc
Australia Australia
Ritesh is an IT consultant with over ten years of experience in the IT industry varying from consultation, architecture, design, development to technical management. He has a strong background in solutions and applications architecture with a focus on Microsoft’s .Net platform. His area of expertise spans design and implementation of client/server, database and web-based systems. He has worked with C#, ASP.NET 1.1 and 2.0, ADO.NET, Web Services and SQL technology on several enterprise class projects.




Freedom is not worth having if it does not include the freedom to make mistakes.
Mahatma Gandhi

Comments and Discussions

 
GeneralMy vote of 1 Pin
Maykonn Welington Candido23-Oct-13 9:47
professionalMaykonn Welington Candido23-Oct-13 9:47 
GeneralMy vote of 2 Pin
John Brett23-Oct-13 5:41
John Brett23-Oct-13 5:41 
GeneralMy vote of 1 Pin
Mark Lemke23-Oct-13 3:27
Mark Lemke23-Oct-13 3:27 
Questionsuggestion for improvement Pin
Member 1008959523-Oct-13 2:44
Member 1008959523-Oct-13 2:44 
GeneralMy vote of 1 Pin
cooldirtyboy23-Oct-13 1:32
cooldirtyboy23-Oct-13 1:32 
QuestionTemplating Engine? Pin
Nitij23-Oct-13 1:15
professionalNitij23-Oct-13 1:15 
GeneralMy vote of 1 Pin
Pete O'Hanlon23-Oct-13 0:48
mvePete O'Hanlon23-Oct-13 0:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.