The best way is to use an another html let say index.html with refresh tag that points to your long loading page. This way the loading of the load page are hidden in index.html.
<html>
<head>
<meta http-equiv="refresh" content="2;url=/PutYourLongLoadingPageHe.aspx">
<title>Sample Title</title>
</head>
<body>
<div>
<img scr="wait.gif"</> Please wait while loading the page
</div>
</body>
</html>