I am thinking about a really simple html templating system to implement in asp.net.
Basically given a .html file with a couple of placeholders like [menu] and [content] it would grab the appropriate data and merge it with the html and the display the page. I'd like to be able to use asp.net stuff like controls and postback but this isnt essential.
How difficult would this be to implement it and how would you go about doing it? Also is a solution like this practical for a pretty low traffic cms website?