asp.net Page Pause and performance
Hello all,
Can anyone enligthen me as to why this behaviour happens?
Ok, I have been working on this asp.net site which is due to release in early january. The portion i am working on right now is performance.
My first question is :
During general browsing between sites, i get this blank white screen while the current page does it's databinding and thinking and what not and also it waits for a majority of the Jpeg's to download as well and displays it all at one time. FYI this page is a gallery view of a set of pictures, each thumbnail is 6k, and there are 30 on one page.
Is there any way to have the asp.net page display the html right away and have the images load in a timely fashion? because for general user experience purposes, it sucks to stare at a blank screen for 2 or 3 seconds while all images are being downloaded!
Second question:
I want to know straight up that is databinding the fastest solution to displaying a list of items? Do you gain better performance in doing spagetti code and simply looping within the html page instead of databinding in the codebehind file? I mean that is one of my current issues with performance. Databinding just doesn't seem to go as fast as i would like it to. It also seems like it is holding the page and giving the blank screen while it builds all html then proceeds to serve it out to the client at one time.
I want the html to be outputted as it comes in a timely fashion, not is one huge glob!
Any suggestions?
thanks all!
Flyin
|