When I call a page with AJAX, everything goes fast and well. But if I have a page (for testing purposes) with the following code:
for(int i = 0; i < int.MaxValue; i++)
{}
the page loading is longer, which is obvious. But then, when I load a page that only sets a text on a label, it takes longer (about 5 seconds), but this ain't the case if I call this page before calling the test page (with the for loop).
So, all the loading goes fast, except when I call the test page. From there on every page loads slow. How come?