Re: Dynamic Path

2009-01-12 Thread Keith McGee
thank you Breadcrumbs worked perfectly.

Keith 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317789
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Dynamic Path

2009-01-09 Thread Keith McGee
Is there a  way to display the current location of a web site dynamically. 
Meaning if I was at www.website.com/programs/water/cooling.cfm that location 
bar would look like Home - Programs - Water - Cooling and each one would link 
back to that location.

Thanks
Keith 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317658
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Dynamic Path

2009-01-09 Thread s. isaac dealey
 Is there a  way to display the current location of a web site
 dynamically. Meaning if I was at 
 www.website.com/programs/water/cooling.cfm
 that location bar would look like Home - Programs - Water - Cooling
 and each one would link back to that location.

There's not any way to do that within the address bar. There are ways to
do it within the page if you want. 



-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317669
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Dynamic Path

2009-01-09 Thread Peter Boughton
Yes. What you want is commonly called breadcrumbs, and there are a variety of 
ways to implement this depending on how your website is setup.

Probably a good idea to google for coldfusion breadcrumb and have a look 
through the examples/tutorials that brings up. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317670
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: dynamic path in cfc

2004-06-30 Thread Ben Densmore
Thanks Paul and Barney.

Ben

-Original Message-
From: Paul Kenney [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 29, 2004 11:32 PM
To: CF-Talk
Subject: Re: dynamic path in cfc
Perfectly legal.Go for it.

On Tue, 29 Jun 2004 23:19:19 -0400, Ben Densmore [EMAIL PROTECTED]
wrote:
 
 If I create an instance of a cfc using createObject() can I use an
application variable in the path that points to the cfc or does the path
have to be hard coded?
 
 cfset someObect = createObject(component,
#application.cfcPath#.components) /
 
 Thanks,
 Ben
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




dynamic path in cfc

2004-06-29 Thread Ben Densmore
If I create an instance of a cfc using createObject() can I use an application variable in the path that points to the cfc or does the path have to be hard coded? 

cfset someObect = createObject(component, #application.cfcPath#.components) /

Thanks,
Ben
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: dynamic path in cfc

2004-06-29 Thread Barney Boisvert
You can use a variable to create objects.You can't, however, use a
variable in the type attribute of CFARGUMENT or the returntype attribute of
CFFUNCTION.

Cheers,
barneyb 

 -Original Message-
 From: Ben Densmore [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, June 29, 2004 8:19 PM
 To: CF-Talk
 Subject: dynamic path in cfc
 
 If I create an instance of a cfc using createObject() can I 
 use an application variable in the path that points to the 
 cfc or does the path have to be hard coded? 
 
 cfset someObect = createObject(component, 
 #application.cfcPath#.components) /
 
 Thanks,
 Ben
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Re: dynamic path in cfc

2004-06-29 Thread Paul Kenney
Perfectly legal.Go for it.

On Tue, 29 Jun 2004 23:19:19 -0400, Ben Densmore [EMAIL PROTECTED] wrote:
 
 If I create an instance of a cfc using createObject() can I use an application variable in the path that points to the cfc or does the path have to be hard coded?
 
 cfset someObect = createObject(component, #application.cfcPath#.components) /
 
 Thanks,
 Ben
 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]