What are the Pros and Cons of Server Side Versus Client Side Templating

Server Side Templating Pros: More search engine friendly. Entire response message can be cached. Can work without JavaScript Cons: Harder to mix and match different server side technologies. For example, retrieve data from both Java and Ruby based services Harder to send content for multiple devices. E.g. browser, mobile devices, etc. Client Side Templating Pros: … Read more

What do you Understand by Client Side and Server Side Templating

The modern Rich Internet Applications (RIA) use the design concept of “single page web design”, where a single rich page makes ajax based service calls to render different sections of a page instead of the traditional approach of loading a new page of each user action.The “single page web design” can make use of  client side and server side technologies as … Read more