views:

48

answers:

1

Hi all

I am working on a system that gets templatse dynamicly, they contain tags like {{SomeUserControl}} {{SomeContent}}

I was wonder how I could use MVC to render those templates and replacing the tags in the best possible way as the templates will be edited via a web front end, and the content / macros will be create from the same web front end.

+1  A: 

You might wanna take a look at maybe using another view engine, here are some examples.

NHaml
Spark
NVelocity
Brail

I'm sure there are many more but these are the ones I could think of.

Chad Moran