We need you!

We're working hard on the next version of Developer Fusion. Let us know what you think we should be up to!

Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

Rated
Read 13,923 times

Related Categories

Monitoring performance in ASP

Often when you're developing script, you may want to determine
just how fast the code takes to run. To do so, take advantage of
ASP's built-in Timer function. As you may know, this function
returns the number of seconds since midnight. To use this
function, capture the current value before your script runs,
then again afterwards, and compare the two. While this
method can vary depending on processor speeds, it provides
a decent benchmark.

<body>
<% myStart = timer %>
<b>Start: <%= myStart%></b>
<br/>
<% For x = 1 to 1000 
set myObj = Server.CreateObject("ADODB.Recordset")
set myObj = nothing
Next
myEnd = timer
%>
<b>End: <%=myEnd%></b>
<br/>
<b>Ellapsed Time: <%= myEnd - myStart %> (seconds)</b>
</body>

© 2001 Element K Journals, a division of Element K Press LLC ("Element K"). Element K and the Element K logo are trademarks of Element K LLC

Comments