simultaneous page load and ajax call
问题 I have a web application with some pages take quite a long time to load because of what they have to do in code behind. I would like to show what is going on to the user by showing the different status of the process. I was thinking about calling recursively (by ajax) a page which ready a value in the session. This value is set by the page that take time to load. The problem is that the page called by ajax is not executed while the other page load is finished. Is there some way to do that?