Is this the type of thing you're looking for?

Put this before the search:
<CFSET tickBegin = GetTickCount()>

Put this after the search:
<CFSET tickEnd = GetTickCount()>


Then, this will convert the time to seconds:
<CFSET searchTimeSec = (tickEnd - tickBegin)/1000>

This will convert the time to minutes:
<CFSET searchTimeMin = ((tickEnd - tickBegin)/1000)/60>

Then output whichever one you wish to see:
<cfoutput>#searchTimeSec#</cfoutput>
------------------------------------
Clint R. Tillerson
Meteorologist/Programmer
Pacific Environmental Services, Inc.
5001 South Miami Blvd.
PO Box 12077
RTP, NC  27709
(919) 941-0333
Fax: (919) 941-0234
------------------------------------
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to