Go Back   Trackpads Community > General Discussions > Computer and Technology > Web Design

Web Design Forums and discussions on webdesign

Web Design

Reply
 
LinkBack Thread Tools
Old 05-07-2005, 16:00   #1 (permalink)
mick
Civilians

 
Default Re: Recommendation of a good breadcrumb program


"Fat Sam" <janetandsam@beeteeinternet.co.uk> wrote in message
news:3e3o8eF10eo5U1@individual.net...
> Heh, I'd never heard the term 'breadcrumbs' before, so I looked it up
> and sicovered it's just another word for the things I call 'navigation
> trails'....You live and learn eh?....
>
> I usually create these on the fly....There's loads of methods you can
> use, but it's not too different to describing a tree structure for
> directories and folders....

Thanks a lot can you tell me where you have a example of how you create
these on a fly and how to get one working.


 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Trackpads Information
Click to Visit
Old 05-07-2005, 16:00   #2 (permalink)
Gerry for email use my name at dergal dt com
Civilians

 
Default Re: Recommendation of a good breadcrumb program

mick wrote:
> "Fat Sam" <janetandsam@beeteeinternet.co.uk> wrote in message
> news:3e3o8eF10eo5U1@individual.net...
>
>>Heh, I'd never heard the term 'breadcrumbs' before, so I looked it up
>>and sicovered it's just another word for the things I call 'navigation
>>trails'....You live and learn eh?....
>>
>>I usually create these on the fly....There's loads of methods you can
>>use, but it's not too different to describing a tree structure for
>>directories and folders....

>
> Thanks a lot can you tell me where you have a example of how you create
> these on a fly and how to get one working.


Are we not just talking about

Home >> Electronics >> Torches >> Maglight 2000

Top, Top level cat, second level car, product ?

Or am I missing something here (been known to happen)
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-07-2005, 16:00   #3 (permalink)
Fat Sam
Civilians

 
Default Re: Recommendation of a good breadcrumb program

Gerry for email use my name at dergal dt com wrote:
> mick wrote:
>
>> "Fat Sam" <janetandsam@beeteeinternet.co.uk> wrote in message
>> news:3e3o8eF10eo5U1@individual.net...
>>
>>> Heh, I'd never heard the term 'breadcrumbs' before, so I looked it up
>>> and sicovered it's just another word for the things I call 'navigation
>>> trails'....You live and learn eh?....
>>>
>>> I usually create these on the fly....There's loads of methods you can
>>> use, but it's not too different to describing a tree structure for
>>> directories and folders....

>>
>>
>> Thanks a lot can you tell me where you have a example of how you create
>> these on a fly and how to get one working.

>
>
> Are we not just talking about
>
> Home >> Electronics >> Torches >> Maglight 2000
>
> Top, Top level cat, second level car, product ?
>
> Or am I missing something here (been known to happen)


That's exactly it.....


--
www.fixaphoto.co.uk
for photographic restorations
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-07-2005, 16:00   #4 (permalink)
Fat Sam
Civilians

 
Default Re: Recommendation of a good breadcrumb program

mick wrote:
> "Fat Sam" <janetandsam@beeteeinternet.co.uk> wrote in message
> news:3e3o8eF10eo5U1@individual.net...
>
>>Heh, I'd never heard the term 'breadcrumbs' before, so I looked it up
>>and sicovered it's just another word for the things I call 'navigation
>>trails'....You live and learn eh?....
>>
>>I usually create these on the fly....There's loads of methods you can
>>use, but it's not too different to describing a tree structure for
>>directories and folders....

>
> Thanks a lot can you tell me where you have a example of how you create
> these on a fly and how to get one working.
>
>

Have category fields in your DB...Call them Cat1, Cat2, Cat3, Cat4
etc....And of course there's your product name field....

When you dynamically build the pages for each stage in the navigation,
have them search for the relevant Category term, and the subsequent ones
below it....

So for example, to use the category terms that Gerry mentioned, You
might want to organise your Maglite into the category
Home > Electronics > Lighting > Torches > Maglight 2000
So in your database for the maglite entry you'd have the following fields:-

product = Maglite 2000
Cat1 = Electronics
Cat2 = Lighting
Cat3 = Torches

So if you bring up the actual Maglite 2000's product spec page, it will
compile a 'breadcrumb' variable with all the Category field values

<%
DisplayBreadcrumb = "Home >> <a href='" & RS("Cat1") & "'>" & RS("Cat1")
& "</a> >> <a href='" & RS("Cat2") & "'>" & RS("Cat2") & "</a> >> <a
href='" & RS("Cat3") & "'>" & RS("Cat3") & " >> "</a> & RS("product")
Response.write DisplayBreadcrumb
%>

That's ASP, but it gives the general idea...

Of course, if your not on the product display page, but are halfway
through the navigation, say on the "Torches" page, this would be "Cat3"
so you would simply display Cat3, and whatever Categorys come below
it....If you are on the "Lighting" page, you'd just display Cat1 and
Cat2....

You get the general idea?....

It helps, if you get some paper, a pencil, and an eraser and spend some
time drawing your directory tree on paper before you attempt to build
your product database, as it will make it infinitely easier to get your
categories spot on, and it will make it easier to place new products in
the correct categories at a later date....

I'm sure there are easier or more elegant ways of doing this....My code
tends to be very clunky, and not very gracefull, but the above method
has always worked well for me....

--
www.fixaphoto.co.uk
for photographic restorations
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-08-2005, 00:00   #5 (permalink)
Norman L. DeForest
Civilians

 
Default Re: Recommendation of a good breadcrumb program


On Sat, 7 May 2005, Fat Sam wrote:

> mick wrote:
> > "Fat Sam" <janetandsam@beeteeinternet.co.uk> wrote in message
> > news:3e3o8eF10eo5U1@individual.net...
> >
> >>Heh, I'd never heard the term 'breadcrumbs' before, so I looked it up
> >>and sicovered it's just another word for the things I call 'navigation
> >>trails'....You live and learn eh?....
> >>
> >>I usually create these on the fly....There's loads of methods you can
> >>use, but it's not too different to describing a tree structure for
> >>directories and folders....

> >
> > Thanks a lot can you tell me where you have a example of how you create
> > these on a fly and how to get one working.
> >
> >

> Have category fields in your DB...Call them Cat1, Cat2, Cat3, Cat4
> etc....And of course there's your product name field....
>
> When you dynamically build the pages for each stage in the navigation,
> have them search for the relevant Category term, and the subsequent ones
> below it....
>
> So for example, to use the category terms that Gerry mentioned, You
> might want to organise your Maglite into the category
> Home > Electronics > Lighting > Torches > Maglight 2000
> So in your database for the maglite entry you'd have the following fields:-
>
> product = Maglite 2000
> Cat1 = Electronics
> Cat2 = Lighting
> Cat3 = Torches
>
> So if you bring up the actual Maglite 2000's product spec page, it will
> compile a 'breadcrumb' variable with all the Category field values
>
> <%
> DisplayBreadcrumb = "Home >> <a href='" & RS("Cat1") & "'>" & RS("Cat1")
> & "</a> >> <a href='" & RS("Cat2") & "'>" & RS("Cat2") & "</a> >> <a
> href='" & RS("Cat3") & "'>" & RS("Cat3") & " >> "</a> & RS("product")
> Response.write DisplayBreadcrumb
> %>
>
> That's ASP, but it gives the general idea...


OK, I can see people getting to the "Maglite" page by following the trail,
"Electronics > Lighting > Torches".

product = Maglite 2000
Cat1 = Electronics
Cat2 = Lighting
Cat3 = Torches

And people getting to the "screwdriver set APx583" page by using
"Work > Tools > Screwdrivers".

product = screwdriver set APx583
Cat1 = Work
Cat2 = Tools
Cat3 = Screwdrivers

But what if people can get to a product such as "screwdriver with
built-in torch, Model SC397" in more than one way,
"Electronics > Lighting > Torches"
or "Work > Tools > Screwdrivers"

Which entry in the database do you use?

product = screwdriver with built-in torch, Model SC397
Cat1 = Electronics
Cat2 = Lighting
Cat3 = Torches

or?

product = screwdriver with built-in torch, Model SC397
Cat1 = Work
Cat2 = Tools
Cat3 = Screwdrivers

Or, for another example, a site with recipies may have one recipe
listed under every different ingredient as well as a major category.

A fictitious example:

"Vegetables > Tomatoes > Soups > Lamb, tomato, bean and cabbage soup"
"Vegetables > Beans > Soups > Lamb, tomato, bean and cabbage soup"
"Vegetables > Cabbage > Soups > Lamb, tomato, bean and cabbage soup"
"Meats > Lamb > Soups > Lamb, tomato, bean and cabbage soup"
"Soups > Vegetables > Tomatoes > Lamb, tomato, bean and cabbage soup"
"Soups > Vegetables > Beans > Lamb, tomato, bean and cabbage soup"
"Soups > Vegetables > Cabbage > Lamb, tomato, bean and cabbage soup"
"Soups > Meats > Lamb > Lamb, tomato, bean and cabbage soup"

How is something like this handled?

--
">> consider moving away from Front Page...."
">To what? Any suggestions?"
"Naked bungee-jumping. It's less humiliating <g>"
-- Matt Probert in alt.www.webmaster, March 20, 2005

 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 05-08-2005, 12:00   #6 (permalink)
Fat Sam
Civilians

 
Default Re: Recommendation of a good breadcrumb program

Norman L. DeForest wrote:
> On Sat, 7 May 2005, Fat Sam wrote:
>
>
>>mick wrote:
>>
>>>"Fat Sam" <janetandsam@beeteeinternet.co.uk> wrote in message
>>>news:3e3o8eF10eo5U1@individual.net...
>>>
>>>
>>>>Heh, I'd never heard the term 'breadcrumbs' before, so I looked it up
>>>>and sicovered it's just another word for the things I call 'navigation
>>>>trails'....You live and learn eh?....
>>>>
>>>>I usually create these on the fly....There's loads of methods you can
>>>>use, but it's not too different to describing a tree structure for
>>>>directories and folders....
>>>
>>>Thanks a lot can you tell me where you have a example of how you create
>>>these on a fly and how to get one working.
>>>
>>>

>>
>>Have category fields in your DB...Call them Cat1, Cat2, Cat3, Cat4
>>etc....And of course there's your product name field....
>>
>>When you dynamically build the pages for each stage in the navigation,
>>have them search for the relevant Category term, and the subsequent ones
>>below it....
>>
>>So for example, to use the category terms that Gerry mentioned, You
>>might want to organise your Maglite into the category
>>Home > Electronics > Lighting > Torches > Maglight 2000
>>So in your database for the maglite entry you'd have the following fields:-
>>
>>product = Maglite 2000
>>Cat1 = Electronics
>>Cat2 = Lighting
>>Cat3 = Torches
>>
>>So if you bring up the actual Maglite 2000's product spec page, it will
>>compile a 'breadcrumb' variable with all the Category field values
>>
>><%
>>DisplayBreadcrumb = "Home >> <a href='" & RS("Cat1") & "'>" & RS("Cat1")
>>& "</a> >> <a href='" & RS("Cat2") & "'>" & RS("Cat2") & "</a> >> <a
>>href='" & RS("Cat3") & "'>" & RS("Cat3") & " >> "</a> & RS("product")
>>Response.write DisplayBreadcrumb
>>%>
>>
>>That's ASP, but it gives the general idea...

>
>
> OK, I can see people getting to the "Maglite" page by following the trail,
> "Electronics > Lighting > Torches".
>
> product = Maglite 2000
> Cat1 = Electronics
> Cat2 = Lighting
> Cat3 = Torches
>
> And people getting to the "screwdriver set APx583" page by using
> "Work > Tools > Screwdrivers".
>
> product = screwdriver set APx583
> Cat1 = Work
> Cat2 = Tools
> Cat3 = Screwdrivers
>
> But what if people can get to a product such as "screwdriver with
> built-in torch, Model SC397" in more than one way,
> "Electronics > Lighting > Torches"
> or "Work > Tools > Screwdrivers"
>
> Which entry in the database do you use?
>
> product = screwdriver with built-in torch, Model SC397
> Cat1 = Electronics
> Cat2 = Lighting
> Cat3 = Torches
>
> or?
>
> product = screwdriver with built-in torch, Model SC397
> Cat1 = Work
> Cat2 = Tools
> Cat3 = Screwdrivers
>
> Or, for another example, a site with recipies may have one recipe
> listed under every different ingredient as well as a major category.
>
> A fictitious example:
>
> "Vegetables > Tomatoes > Soups > Lamb, tomato, bean and cabbage soup"
> "Vegetables > Beans > Soups > Lamb, tomato, bean and cabbage soup"
> "Vegetables > Cabbage > Soups > Lamb, tomato, bean and cabbage soup"
> "Meats > Lamb > Soups > Lamb, tomato, bean and cabbage soup"
> "Soups > Vegetables > Tomatoes > Lamb, tomato, bean and cabbage soup"
> "Soups > Vegetables > Beans > Lamb, tomato, bean and cabbage soup"
> "Soups > Vegetables > Cabbage > Lamb, tomato, bean and cabbage soup"
> "Soups > Meats > Lamb > Lamb, tomato, bean and cabbage soup"
>
> How is something like this handled?
>


Errrr....I didn't really think this through very well, did I?...LOL

--
www.fixaphoto.co.uk
for photographic restorations
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
I need a good website submission program Laura25 Web Design 6 08-08-2005 16:00
Web Log Analysis Program Recommendation Terry Web Design 11 05-20-2005 04:00
recommendation badassgranny@neomeo.com Gaming club 0 07-24-2004 00:54
Good Pocket PC Development Book - recommendation please Dave Smithz Microsoft Applications 2 07-24-2004 00:14
Good Server Stats program? CitizenX Web Design 2 06-15-2004 11:01


Community Information
Options
Quick Options
Trackpads Non-Commercial Ad
Copyright Information Click to Visit
Time
Server Time
All times are GMT -4. The time now is 12:46.
Copyright
Copyright Information
The header is based off of work by Vipixel.com and modified by this site. Trackpads and the Trackpads Logo are both Registered Trademarks of Jason Edwards and cannot be used without prior written permission.  The only exception is as a link back to this site. Trackpads is a private website run by a small legion of volunteers, 3 dogs, 12.5 cats and an army of small, super smart, bio-engineered mice with pointy hats and tutu's. Search Engine Friendly URLs by vBSEO 3.2.0 RC7
Archive Links
Archive Links
Page generated in 1.01115 seconds with 19 queries