"Dave" <just1coder@yah oo.ca> wrote in message
news:ebAie3obEH A.3988@tk2msftn gp13.phx.gbl...[color=blue]
> Is there an easy way to determine how long it took a particular page to
> execute?[/color]
Manohar Kamath [MVP] wrote:
[color=blue]
> 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.
>[/color]
Would you be able to give me an example? :)
On Tue, 20 Jul 2004 15:25:53 -0400, Dave wrote:
[color=blue]
>Manohar Kamath [MVP] wrote:
>[color=green]
>> 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.
>>[/color]
>Would you be able to give me an example? :)[/color]
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?
"Dave" <just1coder@yah oo.ca> wrote in message
news:u91eb9obEH A.1644@tk2msftn gp13.phx.gbl...[color=blue]
> Manohar Kamath [MVP] wrote:
>[color=green]
> > You could set a time variable at the top of the page, and compare with[/color][/color]
the[color=blue][color=green]
> > time at the end of the page. The difference is the time you want.
> >[/color]
> Would you be able to give me an example? :)[/color]
Dim start
start = Timer
' Do some stuff
Response.Write Timer - start
Chris Hohmann wrote:[color=blue]
> "Dave" <just1coder@yah oo.ca> wrote in message
> news:u91eb9obEH A.1644@tk2msftn gp13.phx.gbl...
>[color=green]
>>Manohar Kamath [MVP] wrote:
>>
>>[color=darkred]
>>>You could set a time variable at the top of the page, and compare with[/color][/color]
>
> the
>[color=green][color=darkred]
>>>time at the end of the page. The difference is the time you want.
>>>[/color]
>>
>>Would you be able to give me an example? :)[/color]
>
>
> Dim start
> start = Timer
> ' Do some stuff
> Response.Write Timer - start
>
>[/color]
wow. didn't think it was T H A T easy! ;)
"Dave" <just1coder@yah oo.ca> wrote in message
news:ebAie3obEH A.3988@tk2msftn gp13.phx.gbl...[color=blue]
> Is there an easy way to determine how long it took a particular page to
> execute?[/color]
Comment