I have an application in which a page takes about 1 minute to load. It is a large page with a lot of calculation and other stuff.
I want to display a progress indicator until the server gives me a reply. Does anyone have any idea for this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If it takes a long time on the server to create the HTML of the page, then there’s no way of showing the page with a loading message/progress indicator, and then have the content show up.
The only way I can think of is loading the page with just the loading message/progress indicator, and then making an AJAX call to actually get the content (which takes a long time to get generated).