which is the best method to load the Data without database interactivity

Francesca44

New Member
In my new project, I have many dynamic data blocks on home page. for e.g.
  • Latest news (displays top 2 news from DB, contains a small image, abstract text, and read more link)
  • Deals of the week (displays top 2 deals from DB, contains a small image, Title, Subtitle, abstract text, and read more link)
To implement such things, I'm planning to go for one of the following approaches.Approach A: storing such data in a separate HTML file, and render that using either Jquery ajax() call or MVC RenderPage()Approach B: storing such data in a separate Text file, and render that using Jquery ajax() callApproach C: storing such data in a separate XML file, and render that using Jquery ajax() call by reading XML and build HTML dataSo can anybody suggest me which on is best method? I don't to go for database interactivity during homepage load.
 
Back
Top