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?

link|improve this question

62% accept rate
You can use RenderPartial or @Html.Partial to 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
+1 Good question. I've not found a good way of sharing the views between client server. I wish I could, it introduces risk and work having to maintain both – reach4thelasers Apr 17 at 14:45
feedback

1 Answer

Not so much a technical as a functional answer see my answer here for a functional flow incorporating server- and clientside rendering (using Mustache)

Accessibility and all these JavaScript frameworks

hth,

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.