Pre-Loader in Asp.Net with javascript
Preloaders give the viewer something to look at while the Javascript, Css file downloads. Whenever we used javascript files and those file in depended each other or write code on HTML markup of javascript which called the function in those files sometime gives an error or sometime give some ugly shape of loading webpage. In this article I focused to create Pre-loader step by step. Demo shows in asp.Net, in this demo we create two aspx pages, first page I use as a pre-loader and second page actual page we want to open. click here to download demo Create a website and then add new aspx page with name of PreLoader.aspx, below code past in markup of it. var iLoopCounter = 1; var iMaxLoop = 6; var iIntervalId; function BeginPageLoad() { ...