increase browser display time [closed]
I am trying to fetch data like Amazon or other sites. The process take time (about one or more hours) to fetch data. But in between the browser get off saying 'Page can not be displayed' in IE and other error in FF and all UI got lost. How to increase browser time to complete the task successfully.
Several things you could do:
- Have this happen in an AJAX framework - this ensures UI will continue and you can display a progress indicator
- Break down into smaller steps, so you can give the user feedback at it goes along
- Improve the way it works so people don't have to wait that long.
精彩评论