Reputation: 14039
I am building a small web application, in my app I am loading certain types of data. Each type takes a different ammount of time. Now, I wouldn't like my whole page to load for years, instead I want my page to load immediatly, show my logo and basic css and then load each content tab separatly. What is the correct way to approach it?
I am working with asp.net and c#.
Thank you!
Upvotes: 0
Views: 547
Reputation: 2419
I'm not a fan of them, but iframes could be used for each individual grid of data. They would load as they were called by the main page then and render when they are ready. This would work without javascript.
Upvotes: 0
Reputation: 7781
If you are not concerned about accessibility/SEO you can use UpdatePanel and load content using AJAX. You can trigger AJAX update on-page-load.
Upvotes: 1