I have a .NET console application that needs to generate some HTML files. I could just construct the HTML in a StringBuilder and write the contents out to a file, but I was
As Matt mentioned, spark is nice but it could be overkill for some simple templates and gets complicated if you are not using it in MVC.
I have personally had a lot of success with NVelocity and I also publish a simple example/wrapper on using it: http://simpable.com/code/simpletemplate/
In addition, GraffitiCMS's entire theming system run on NVelocity (although I would have used spark if it were available for this task).
-Scott