Re: Breadcrumb navigation CF Tutorial

2008-04-04 Thread Nisher
I am just in the procss of attempting a similar breadcrumb trail for the navigation system of one of the sites I am working on. the big difference in mine that i see is that there is no strict folder system and there are too many navs that share sub files to make a proper file system in that

RE: Breadcrumb navigation CF Tutorial

2003-01-30 Thread Tony Weeg
explain...what you mean by breadcrumb navigation with CF ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping reporting www.navtrak.net 410.548.2337 -Original Message- From: Luis

RE: Breadcrumb navigation CF Tutorial

2003-01-30 Thread webguy
explain...what you mean by breadcrumb navigation with CF ...tony Does anyone know of a good tutorial on creating breadcrumb navigation with CF? I guess what is meant is this your are here: home - section - subsection - more sub sections WG

RE: Breadcrumb navigation CF Tutorial

2003-01-30 Thread Jerry Johnson
Are your sections defined by directory based file location fuseaction dependancy trees sitemap tree file naming convention extra sgml/xml/comments in the cfm file itself other ? Jery [EMAIL PROTECTED] 01/30/03 02:05PM explain...what you mean by breadcrumb navigation with CF ...tony Does

RE: Breadcrumb navigation CF Tutorial

2003-01-30 Thread Luis Lebron
I'm thinking we are going to used directory based file location. Luis -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 1:09 PM To: CF-Talk Subject: RE: Breadcrumb navigation CF Tutorial Are your sections defined by directory based

RE: Breadcrumb navigation CF Tutorial

2003-01-30 Thread Jerry Johnson
:16PM I'm thinking we are going to used directory based file location. Luis -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 1:09 PM To: CF-Talk Subject: RE: Breadcrumb navigation CF Tutorial Are your sections defined by directory

RE: Breadcrumb navigation CF Tutorial

2003-01-30 Thread Mike Townend
-Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 19:38 To: CF-Talk Subject: RE: Breadcrumb navigation CF Tutorial so if we had a file with the following url: /Florida/East Coast/Miami/Hotels.cfm we could assume that the breadcrumbs

Re: Breadcrumb navigation CF Tutorial

2003-01-30 Thread Pete Ruckelshaus
[EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, January 30, 2003 2:16 PM Subject: RE: Breadcrumb navigation CF Tutorial I'm thinking we are going to used directory based file location. Luis ~| Archives: http

RE: Breadcrumb navigation CF Tutorial

2003-01-30 Thread Kreig Zimmerman
No, but... ...the way I've done it is to use a two-dimensional array; With arBreadCrumbTrail[x][1] holding the name, and arBreadCrumbTrail[x][2] holding the link; then a CFLOOP from 1 to ArrayLen() around it, and Bob's yer Uncle. If you'd like further detail, or this doesn't quite answer your