Is there an easy way to determine how long it took a particular page to
execute?

Re: Script Execution Time by Manohar

Manohar
Tue Jul 20 14:18:00 CDT 2004

You could set a time variable at the top of the page, and compare with the
time at the end of the page. The difference is the time you want.

--
Manohar Kamath
Editor, .netWire
www.dotnetwire.com


"Dave" <just1coder@yahoo.ca> wrote in message
news:ebAie3obEHA.3988@tk2msftngp13.phx.gbl...
> Is there an easy way to determine how long it took a particular page to
> execute?



Re: Script Execution Time by Dave

Dave
Tue Jul 20 14:25:53 CDT 2004

Manohar Kamath [MVP] wrote:

> You could set a time variable at the top of the page, and compare with the
> time at the end of the page. The difference is the time you want.
>
Would you be able to give me an example? :)

Re: Script Execution Time by Auric__

Auric__
Tue Jul 20 16:35:09 CDT 2004

On Tue, 20 Jul 2004 15:25:53 -0400, Dave wrote:

>Manohar Kamath [MVP] wrote:
>
>> You could set a time variable at the top of the page, and compare with the
>> time at the end of the page. The difference is the time you want.
>>
>Would you be able to give me an example? :)

At the very top:
<% x = Timer %>

At the very bottom:
<%
y = Timer
z = x - y
Response.Write "z = " & z
%>
--
auric underscore underscore at hotmail dot com
*****
What part of "not for kids" don't you fuckers understand?

Re: Script Execution Time by Chris

Chris
Tue Jul 20 17:53:29 CDT 2004

"Dave" <just1coder@yahoo.ca> wrote in message
news:u91eb9obEHA.1644@tk2msftngp13.phx.gbl...
> Manohar Kamath [MVP] wrote:
>
> > You could set a time variable at the top of the page, and compare with
the
> > time at the end of the page. The difference is the time you want.
> >
> Would you be able to give me an example? :)

Dim start
start = Timer
' Do some stuff
Response.Write Timer - start



Re: Script Execution Time by Dave

Dave
Wed Jul 21 11:29:54 CDT 2004

Chris Hohmann wrote:
> "Dave" <just1coder@yahoo.ca> wrote in message
> news:u91eb9obEHA.1644@tk2msftngp13.phx.gbl...
>
>>Manohar Kamath [MVP] wrote:
>>
>>
>>>You could set a time variable at the top of the page, and compare with
>
> the
>
>>>time at the end of the page. The difference is the time you want.
>>>
>>
>>Would you be able to give me an example? :)
>
>
> Dim start
> start = Timer
> ' Do some stuff
> Response.Write Timer - start
>
>
wow. didn't think it was T H A T easy! ;)

Re: Script Execution Time by Aaron

Aaron
Wed Jul 21 11:28:50 CDT 2004

http://www.aspfaq.com/2092

--
http://www.aspfaq.com/
(Reverse address to reply.)




"Dave" <just1coder@yahoo.ca> wrote in message
news:ebAie3obEHA.3988@tk2msftngp13.phx.gbl...
> Is there an easy way to determine how long it took a particular page to
> execute?