C# Templates
This project implements a simple templating system in C# using theDjango style {{ varName }}, double curly notation. The class wasimplemented specifically for templatizing html/javascript but can beused with any file type.
The templates only do replacements.Unlike Django, there are no conditional statements, for loops etc..This can all be accomplished however within C# itself, keeping layoutcode totally separated from logic, something I have come to appreciatein managing my own code.
Go to http://code.google.com/p/csharptemplates/
See also these related projects.
- .netTiers Application Framework - .netTiers is a set of open source code generation templates that simplify the ta ...
- Evolve Master Pages - This is a powerful template engine which allows you to merge the contents of you ...
- iCodeGenerator - iCodeGenerator is a database centric template based code generator for any text( ...
- NVelocity - NVelocity is a .Net-based template engine. It permits anyone to use the simple y ...
- StringTemplate - StringTemplate is a java template engine (with ports for C# and Python) for gene ...