Efficiency Question for an Ajax App
- by Kubi
Hi,
Currently I am dealing with a web application which uses a txt file as a database for testing for now. But we will connect it to a server later on.
My question is, if there is a more efficient way to get my objects than the way I am using now.
During the page_init I am getting all my objects into a Collection as List, then I am populating the ajax toolkit accordion objects in the page with that.
I have some client side buttons which fires callbacks for getting some other objects to populate the accordions in an update panel.
And I am using .net Collections too much like dictionary and list, I am wondering if using arrays is more efficient.
Could you advise me about how to make this site better and faster ?
Is it better or possible to initialize those TravelP objects in javascript at the beginning and use it like that ?
Any comments would be greatly appreciated,
Thanks