Efficiency Question for an Ajax App

Posted by Kubi on Stack Overflow See other posts from Stack Overflow or by Kubi
Published on 2010-04-02T13:20:28Z Indexed on 2010/04/02 13:23 UTC
Read the original article Hit count: 547

Filed under:
|
|
|

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

© Stack Overflow or respective owner

Related posts about efficiency

Related posts about ASP.NET