RE: IE 4

2000-05-01 Thread Craig M. Rosenblum

I would be using a javascript answer instead...

script language="javascript"
self.location.href='whereveryouwanttogo.com';
/script



 -Original Message-
 From: David Clay [mailto:[EMAIL PROTECTED]]
 Sent: Monday, May 01, 2000 7:46 AM
 To: [EMAIL PROTECTED]
 Subject: IE 4


 Can any tell me why it takes more time for the CF location path
 below to pull up in IE 4.01 and 4.07 than IE 5 and NS 4.06.

 Puzzling!

 Thank you for your time

 This cflocation goes 2 directories down after DC_NAME is found
 from a query.

 cflocation url"../datachunks/#Trim(DC_NAME)#/dcindex.cfm addtoken="no"

 Dave Clay
 Internet Facilitator
 Trus Joist, A Weyerhaeuser Business

 --
 
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebarÿstsbodyÿsts/cf_tal
k or send a message to [EMAIL PROTECTED] with 'unsubscribe'
in the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: IE 4

2000-05-01 Thread [ a l l e n g ]

Why use the javascript if you don't absolutely need to?

- Original Message -
From: "Craig M. Rosenblum" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, May 01, 2000 9:42 AM
Subject: RE: IE 4


I would be using a javascript answer instead...

script language="javascript"
self.location.href='whereveryouwanttogo.com';
/script



 -Original Message-
 From: David Clay [mailto:[EMAIL PROTECTED]]
 Sent: Monday, May 01, 2000 7:46 AM
 To: [EMAIL PROTECTED]
 Subject: IE 4


 Can any tell me why it takes more time for the CF location path
 below to pull up in IE 4.01 and 4.07 than IE 5 and NS 4.06.

 Puzzling!

 Thank you for your time

 This cflocation goes 2 directories down after DC_NAME is found
 from a query.

 cflocation url"../datachunks/#Trim(DC_NAME)#/dcindex.cfm addtoken="no"

 Dave Clay
 Internet Facilitator
 Trus Joist, A Weyerhaeuser Business

 --
 
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebarÿstsbodyÿsts/cf_tal
k or send a message to [EMAIL PROTECTED] with 'unsubscribe'
in the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=stsbody=sts/cf_talk or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: IE 4

2000-05-01 Thread John N Westerlund

I would hypothesize because MS and AOL/NSCP streamlined the redirect() call
in IE5 and NS4.06.
Since the CFLOCATION just calls the redirect() and the redirect() is faster
in later editions, it takes less time.


-Original Message-
From: David Clay [EMAIL PROTECTED]
To: [EMAIL PROTECTED] [EMAIL PROTECTED]
Date: Monday, May 01, 2000 8:44 AM
Subject: IE 4


Can any tell me why it takes more time for the CF location path below to
pull up in IE 4.01 and 4.07 than IE 5 and NS 4.06.

Puzzling!

Thank you for your time

This cflocation goes 2 directories down after DC_NAME is found from a query.

cflocation url"../datachunks/#Trim(DC_NAME)#/dcindex.cfm addtoken="no"

Dave Clay
Internet Facilitator
Trus Joist, A Weyerhaeuser Business


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: IE 4

2000-05-01 Thread Benjamin Smedberg

Can any tell me why it takes more time for the CF location path below to
pull up in IE 4.01 and 4.07 than IE 5 and NS 4.06.

This is just a theory, not tested...

IE5 uses HTTP/1.1 which has keepalive options. So if you are CFLOCATIONing
to the same server, you wouldn't have to open a new HTTP connection, which
is fairly expensive, especially when the Net is congested.

+
+ Benjamin Smedberg
+ CUA Assistant Webmaster
+ [EMAIL PROTECTED] - http://computing.cua.edu/as/bds/
+
+ He is risen, as He said! Alleluia!
+


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: IE 4

2000-05-01 Thread Craig M. Rosenblum

more accurate and reliable...

and a lot of cold fusion is turned into javascript by the server

 -Original Message-
 From: [ a l l e n g ] [mailto:[EMAIL PROTECTED]]
 Sent: Monday, May 01, 2000 9:54 AM
 To: [EMAIL PROTECTED]
 Subject: Re: IE 4


 Why use the javascript if you don't absolutely need to?

 - Original Message -
 From: "Craig M. Rosenblum" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Monday, May 01, 2000 9:42 AM
 Subject: RE: IE 4


 I would be using a javascript answer instead...

 script language="javascript"
 self.location.href='whereveryouwanttogo.com';
 /script



  -Original Message-
  From: David Clay [mailto:[EMAIL PROTECTED]]
  Sent: Monday, May 01, 2000 7:46 AM
  To: [EMAIL PROTECTED]
  Subject: IE 4
 
 
  Can any tell me why it takes more time for the CF location path
  below to pull up in IE 4.01 and 4.07 than IE 5 and NS 4.06.
 
  Puzzling!
 
  Thank you for your time
 
  This cflocation goes 2 directories down after DC_NAME is found
  from a query.
 
  cflocation url"../datachunks/#Trim(DC_NAME)#/dcindex.cfm addtoken="no"
 
  Dave Clay
  Internet Facilitator
  Trus Joist, A Weyerhaeuser Business
 
  --
  
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebarÿstsbodyÿsts/cf_tal
 k or send a message to [EMAIL PROTECTED] with
 'unsubscribe'
 in the body.

 --
 --
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=stsbody=sts/cf_tal
k or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebarRstsbodyRsts/cf_talk or send a message 
to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: IE 4

2000-05-01 Thread Benjamin Smedberg

 Why use the javascript if you don't absolutely need to?

more accurate and reliable...

and a lot of cold fusion is turned into javascript by the server

NOT TRUE! CFLOCATION is NOT a JavaScript function! It is carried out at
the HTTP level. Furthermore, there are people who disable JavaScript partly
or completely.

Also, if you use JavaScript to go to a new location, it will appear in your
browser history, while with CFLOCATION it will not...

CFLOCATION is in general a much better alternative.

+
+ Benjamin Smedberg
+ CUA Assistant Webmaster
+ [EMAIL PROTECTED] - http://computing.cua.edu/as/bds/
+
+ He is risen, as He said! Alleluia!
+


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: IE 4

2000-05-01 Thread Chris Evans

I don't know of any CF that is turned into Javascript, other than CFFORM
elements which are specifically desgined to dothis.

Chris Evans
[EMAIL PROTECTED]
http://www.fuseware.com


-Original Message-
From: Craig M. Rosenblum [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 01, 2000 12:10 PM
To: [EMAIL PROTECTED]
Subject: RE: IE 4


more accurate and reliable...

and a lot of cold fusion is turned into javascript by the server

 -Original Message-
 From: [ a l l e n g ] [mailto:[EMAIL PROTECTED]]
 Sent: Monday, May 01, 2000 9:54 AM
 To: [EMAIL PROTECTED]
 Subject: Re: IE 4


 Why use the javascript if you don't absolutely need to?

 - Original Message -
 From: "Craig M. Rosenblum" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Monday, May 01, 2000 9:42 AM
 Subject: RE: IE 4


 I would be using a javascript answer instead...

 script language="javascript"
 self.location.href='whereveryouwanttogo.com';
 /script



  -Original Message-
  From: David Clay [mailto:[EMAIL PROTECTED]]
  Sent: Monday, May 01, 2000 7:46 AM
  To: [EMAIL PROTECTED]
  Subject: IE 4
 
 
  Can any tell me why it takes more time for the CF location path
  below to pull up in IE 4.01 and 4.07 than IE 5 and NS 4.06.
 
  Puzzling!
 
  Thank you for your time
 
  This cflocation goes 2 directories down after DC_NAME is found
  from a query.
 
  cflocation url"../datachunks/#Trim(DC_NAME)#/dcindex.cfm addtoken="no"
 
  Dave Clay
  Internet Facilitator
  Trus Joist, A Weyerhaeuser Business
 
  --
  
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebarÿstsbodyÿsts/cf_tal
 k or send a message to [EMAIL PROTECTED] with
 'unsubscribe'
 in the body.

 --
 --
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=stsbody=sts/cf_tal
k or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=stsbody=sts/cf_talk or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: IE 4

2000-05-01 Thread [ a l l e n g ]

more accurate and realiable than the cold fusion?

but the CF is server side and NOT dependent on the clients browser.  and i
believe the only time that CF actually send actual javascript to the client
browser is when using CFFORMs.

- Original Message -
From: "Craig M. Rosenblum" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, May 01, 2000 11:10 AM
Subject: RE: IE 4


more accurate and reliable...

and a lot of cold fusion is turned into javascript by the server

 -Original Message-
 From: [ a l l e n g ] [mailto:[EMAIL PROTECTED]]
 Sent: Monday, May 01, 2000 9:54 AM
 To: [EMAIL PROTECTED]
 Subject: Re: IE 4


 Why use the javascript if you don't absolutely need to?

 - Original Message -
 From: "Craig M. Rosenblum" [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Monday, May 01, 2000 9:42 AM
 Subject: RE: IE 4


 I would be using a javascript answer instead...

 script language="javascript"
 self.location.href='whereveryouwanttogo.com';
 /script



  -Original Message-
  From: David Clay [mailto:[EMAIL PROTECTED]]
  Sent: Monday, May 01, 2000 7:46 AM
  To: [EMAIL PROTECTED]
  Subject: IE 4
 
 
  Can any tell me why it takes more time for the CF location path
  below to pull up in IE 4.01 and 4.07 than IE 5 and NS 4.06.
 
  Puzzling!
 
  Thank you for your time
 
  This cflocation goes 2 directories down after DC_NAME is found
  from a query.
 
  cflocation url"../datachunks/#Trim(DC_NAME)#/dcindex.cfm addtoken="no"
 
  Dave Clay
  Internet Facilitator
  Trus Joist, A Weyerhaeuser Business
 
  --
  
  Archives: http://www.eGroups.com/list/cf-talk
  To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebarÿstsbodyÿsts/cf_tal
 k or send a message to [EMAIL PROTECTED] with
 'unsubscribe'
 in the body.

 --
 --
 --
 Archives: http://www.eGroups.com/list/cf-talk
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=stsbody=sts/cf_tal
k or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.



--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=stsbody=sts/cf_talk or send
a message to [EMAIL PROTECTED] with 'unsubscribe' in the
body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.