Re: page load times (not just on the server)...

2003-01-09 Thread Cutter (CF_Talk)
Wouldn't that completely depend upon the speed of the client's 
connection? (Dial-Up, Lan, DSL, Cable, etc.)...

Cutter

cftalk wrote:

I am needing to find the page load times from the CLIENT side.  Does anyone
have a tool or know a way to do this?

Brian Yager
President - North Alabama Cold Fusion
Users Group
http://www.nacfug.com
Ground-Based Midcourse Defense JPO
Contractor CSC
(256)313-9397
[EMAIL PROTECTED]


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: page load times (not just on the server)...

2003-01-09 Thread cftalk
Yes it would...We need to see what the loading times are from different
connections.  We also want to see if we can improve on it.  That is why I am
looking for a tool.


- Original Message -
From: Cutter (CF_Talk) [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, January 09, 2003 8:47 AM
Subject: Re: page load times (not just on the server)...


 Wouldn't that completely depend upon the speed of the client's
 connection? (Dial-Up, Lan, DSL, Cable, etc.)...

 Cutter

 cftalk wrote:

 I am needing to find the page load times from the CLIENT side.  Does
anyone
 have a tool or know a way to do this?
 
 Brian Yager
 President - North Alabama Cold Fusion
 Users Group
 http://www.nacfug.com
 Ground-Based Midcourse Defense JPO
 Contractor CSC
 (256)313-9397
 [EMAIL PROTECTED]
 
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: page load times (not just on the server)...

2003-01-09 Thread Andrea Galmacci - awd*
Brian, this has nothing to do with CF but it's a nice tool - probably you
already know about it...
It's not browser dependent (stand alone programme) but it's connection
dependent.

http://www.alchemy-lab.com/products/eye/index.html


HTH,
Andrea


- Original Message -
From: cftalk [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, January 09, 2003 3:54 PM
Subject: Re: page load times (not just on the server)...


 Yes it would...We need to see what the loading times are from different
 connections.  We also want to see if we can improve on it.  That is why I
am
 looking for a tool.


 - Original Message -
 From: Cutter (CF_Talk) [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Thursday, January 09, 2003 8:47 AM
 Subject: Re: page load times (not just on the server)...


  Wouldn't that completely depend upon the speed of the client's
  connection? (Dial-Up, Lan, DSL, Cable, etc.)...
 
  Cutter
 
  cftalk wrote:
 
  I am needing to find the page load times from the CLIENT side.  Does
 anyone
  have a tool or know a way to do this?
  
  Brian Yager
  President - North Alabama Cold Fusion
  Users Group
  http://www.nacfug.com
  Ground-Based Midcourse Defense JPO
  Contractor CSC
  (256)313-9397
  [EMAIL PROTECTED]
  
  
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: page load times (not just on the server)...

2003-01-09 Thread Lofback, Chris
If you are using CF Studio 5 (and maybe 4.x), have you looked at Document
Weight on the Tools menu?

Chris Lofback
Sr. Web Developer

TRX Integration
28051 US 19 N., Ste. C
Clearwater, FL  33761
www.trxi.com


 -Original Message-
 From: cftalk [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, January 09, 2003 9:29 AM
 To: CF-Talk
 Subject: page load times (not just on the server)...
 
 
 I am needing to find the page load times from the CLIENT 
 side.  Does anyone
 have a tool or know a way to do this?
 
 Brian Yager
 President - North Alabama Cold Fusion
 Users Group
 http://www.nacfug.com
 Ground-Based Midcourse Defense JPO
 Contractor CSC
 (256)313-9397
 [EMAIL PROTECTED]
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: page load times (not just on the server)...

2003-01-09 Thread Smith, Matthew P -CONT(DYN)
Off the top of my head, here's the only way I could see doing this:

Convert EVERY link to a form.(yuck)  Or assign an ID to each link and write
a javascript function that monitors for clicks and compares all the ids to
the id of the clicked link(or some such).
Use javascript to set a hidden form field to the user's current time then
submit onClick for the link.
On the next page, onLoad take the users current time, pop a hidden window
that submits the prior time(from the form field) and the current time.
Server side code to compute the difference and store in db.
Take them to the link they clicked if the storage mechanism needs an interim
update page.

I'm sure there are a hundred ways to go about this, and I usually avoid
javascript when possible so I'm not tops with the language.

Just some ideas.

t/


Matthew P. Smith 
Web Developer, Object Oriented 
Naval Education  Training Professional 
Development  Technology Center 
(NETPDTC) 
(850)452-1001 ext. 1245 
[EMAIL PROTECTED] 


-Original Message-
From: cftalk [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, January 09, 2003 8:29 AM
To: CF-Talk
Subject: page load times (not just on the server)...

I am needing to find the page load times from the CLIENT side.  Does anyone
have a tool or know a way to do this?

Brian Yager
President - North Alabama Cold Fusion
Users Group
http://www.nacfug.com
Ground-Based Midcourse Defense JPO
Contractor CSC
(256)313-9397
[EMAIL PROTECTED]


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4