Knowing how fast your webpage loads is crucial to how quickly your visitors retrieve your content.
Using this simple VB Classic Script in ASP will display the load time of your webpages.
[ASP VBScript Script - Place this at the head of your page.]
CFFCS | CarrzSynEdit: | ASP/VBScript
<%sTime = Timer()%>

[ASP VBScript Script - Place this in the Footer of your page.]
CFFCS | CarrzSynEdit: | ASP/VBScript
Page Load time.: <%=Round((Timer() - sTime) * 1000, 2)%> ms ▼</span>

Your output should look something like this.
Page Load time.: 7.81 ms
That is 7.81 Milliseconds to load the page.
Other Articles Related to this Entry.Using ASP.NET (C#) to find out how fast your page loads.«
Using ASP.NET (VB) to find out how fast your page loads.«