I'm buliding an application in ASP.NET MVC and considering backbone.js for the client side interaction etc..
Ideally when the pages are loaded i'd like to have all the existing content pre-rendered on the server side and then any new content rendered by backbone.js on the fly.
Naturally i dont really want to write my templates twice.
I'm considering having most of the application templated using the razor view engine and then using mustache templates for the small areas that need to be shared between server and front end.
My question is, what does the actual technical implementation of this look like?
Can you provide code samples of how you would achieve this?
For example which library would you use to render the template on the server and then would you manually extract the text from the template file and inject it into the javascript?
RenderPartialor@Html.Partialto refresh your new content using Ajax. That way you only need to have your Razor template. Double bonus: Return the partial view after updating the new content for avoiding another trip to the server. – Eduardo Molteni Dec 30 '11 at 18:29