473,413 Members | 1,718 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,413 software developers and data experts.

Yahoo-Type Directory Structure?

I'm hoping to get some references to articles or documentation
to get some insight into how to develop a 'directory' like this
example [1].

--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@ REMOVETHISTEXT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

[1] http://demos.deloittes.net/directory...rmDefault.aspx
Nov 18 '05 #1
7 1558
It looks like its looping through the categories, then within each loop,
displaying the sub-categories within the given category.

Loops within loops....makes me cringe :)

Simon.

"clintonG" <csgallagher@RE************@metromilwaukee.com> wrote in message
news:uH**************@TK2MSFTNGP10.phx.gbl...
I'm hoping to get some references to articles or documentation
to get some insight into how to develop a 'directory' like this
example [1].

--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@ REMOVETHISTEXT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

[1] http://demos.deloittes.net/directory...rmDefault.aspx

Nov 18 '05 #2
Mouse over the categories and sub-categories and read the query
string value CatID. There seems to be no rhyme or reason to the
out of order values and how they would be used relationally. Drill
down into the sub-categories and it gets even more convoluted.
--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@ REMOVETHISTEXT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"Simon Harris" <to*********@makesyoufat.com> wrote in message
news:#s**************@TK2MSFTNGP10.phx.gbl...
It looks like its looping through the categories, then within each loop,
displaying the sub-categories within the given category.

Loops within loops....makes me cringe :)

Simon.

"clintonG" <csgallagher@RE************@metromilwaukee.com> wrote in message
news:uH**************@TK2MSFTNGP10.phx.gbl...
I'm hoping to get some references to articles or documentation
to get some insight into how to develop a 'directory' like this
example [1].

--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@ REMOVETHISTEXT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

[1] http://demos.deloittes.net/directory...rmDefault.aspx


Nov 18 '05 #3
> Mouse over the categories and sub-categories and read the query
string value CatID. There seems to be no rhyme or reason to the
out of order values and how they would be used relationally. Drill
down into the sub-categories and it gets even more convoluted.


Hi Clinton,

Ok, I moused over the links, the ID of the link is different for each
link/category. I dont see this as being 'convoluted'. It's just a relational
database, surely? Unless i'm missing something?

Simon.
Nov 18 '05 #4
> Mouse over the categories and sub-categories and read the query
string value CatID. There seems to be no rhyme or reason to the
out of order values and how they would be used relationally. Drill
down into the sub-categories and it gets even more convoluted.


Hi Clinton,

Ok, I moused over the links, the ID of the link is different for each
link/category. I dont see this as being 'convoluted'. It's just a relational
database, surely? Unless i'm missing something?

Simon.
Nov 18 '05 #5
Try to make sense of the value assigned to the query strings.
They are no doubt processed as strings but if generated automatically
they would be generated as integers.

If they are generated as integeres the actual values assigned to
categories and sub-category query string values do not relate to
one another in any logical sense.

A well designed hierarchical structure must be generated using
logical constructs in code. Not doing so as the example I am using
for discussion is 'not' and can 'not' be considered an optimal design
regardles of what appears in the display and I conclude this after
evaluating the query string values which follow no sense of order
or logical relationship to one another.

I'm looking for some help from somebody who knows how to
design algorythms and most specifically an algorythm than
will generated a hierarchical relational model that maps to the
drill-down directory schema. I'm hoping to find this documented
somewhere as many algorythms can be found but referring to
a formal construct using colloquial terminology such as
'Yahoo-like menu' is not sufficicently descriptive to use Google to
find a computer science dissertation or a mathematician who has
documented the algorythm that a programming language can then
use to generate a hierarchical relational model.

The developers from Delloitte seem to have developed a solution
but I prefer not to attempt to waste time analyzing what I am already
convinced is a flawed model that appears to produce desired results
which if implemented would likely fail at a critical juncture or impose
needless costs to maintain when needing to scale up and out.

--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@ REMOVETHISTEXT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"Simon Harris" <to*********@makesyoufat.com> wrote in message news:OMaXZ0CXEHA.4
02*@TK2MSFTNGP09.phx.gbl...
Mouse over the categories and sub-categories and read the query
string value CatID. There seems to be no rhyme or reason to the
out of order values and how they would be used relationally. Drill
down into the sub-categories and it gets even more convoluted.


Hi Clinton,

Ok, I moused over the links, the ID of the link is different for each
link/category. I dont see this as being 'convoluted'. It's just a relational
database, surely? Unless i'm missing something?

Simon.

Nov 18 '05 #6
Try to make sense of the value assigned to the query strings.
They are no doubt processed as strings but if generated automatically
they would be generated as integers.

If they are generated as integeres the actual values assigned to
categories and sub-category query string values do not relate to
one another in any logical sense.

A well designed hierarchical structure must be generated using
logical constructs in code. Not doing so as the example I am using
for discussion is 'not' and can 'not' be considered an optimal design
regardles of what appears in the display and I conclude this after
evaluating the query string values which follow no sense of order
or logical relationship to one another.

I'm looking for some help from somebody who knows how to
design algorythms and most specifically an algorythm than
will generated a hierarchical relational model that maps to the
drill-down directory schema. I'm hoping to find this documented
somewhere as many algorythms can be found but referring to
a formal construct using colloquial terminology such as
'Yahoo-like menu' is not sufficicently descriptive to use Google to
find a computer science dissertation or a mathematician who has
documented the algorythm that a programming language can then
use to generate a hierarchical relational model.

The developers from Delloitte seem to have developed a solution
but I prefer not to attempt to waste time analyzing what I am already
convinced is a flawed model that appears to produce desired results
which if implemented would likely fail at a critical juncture or impose
needless costs to maintain when needing to scale up and out.

--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@ REMOVETHISTEXT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"Simon Harris" <to*********@makesyoufat.com> wrote in message news:OMaXZ0CXEHA.4
02*@TK2MSFTNGP09.phx.gbl...
Mouse over the categories and sub-categories and read the query
string value CatID. There seems to be no rhyme or reason to the
out of order values and how they would be used relationally. Drill
down into the sub-categories and it gets even more convoluted.


Hi Clinton,

Ok, I moused over the links, the ID of the link is different for each
link/category. I dont see this as being 'convoluted'. It's just a relational
database, surely? Unless i'm missing something?

Simon.

Nov 18 '05 #7
> Try to make sense of the value assigned to the query strings.
They are no doubt processed as strings but if generated automatically
they would be generated as integers.

If they are generated as integeres the actual values assigned to
categories and sub-category query string values do not relate to
one another in any logical sense.

A well designed hierarchical structure must be generated using
logical constructs in code. Not doing so as the example I am using
for discussion is 'not' and can 'not' be considered an optimal design
regardles of what appears in the display and I conclude this after
evaluating the query string values which follow no sense of order
or logical relationship to one another.

I'm looking for some help from somebody who knows how to
design algorythms and most specifically an algorythm than
will generated a hierarchical relational model that maps to the
drill-down directory schema. I'm hoping to find this documented
somewhere as many algorythms can be found but referring to
a formal construct using colloquial terminology such as
'Yahoo-like menu' is not sufficicently descriptive to use Google to
find a computer science dissertation or a mathematician who has
documented the algorythm that a programming language can then
use to generate a hierarchical relational model.

The developers from Delloitte seem to have developed a solution
but I prefer not to attempt to waste time analyzing what I am already
convinced is a flawed model that appears to produce desired results
which if implemented would likely fail at a critical juncture or impose
needless costs to maintain when needing to scale up and out.


What ever.
Nov 18 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

13
by: dan roberts | last post by:
Folks, This is my first Python project so please bear with me. I need to download data from Yahoo Finance in CSV format. The symbols are provided in a text file, and the project details are...
6
by: Travis | last post by:
Can someone give me an example of connecting to yahoo's smtp server and sending mail? I'm doing this: msg = MIMEText(self.text_ctrl_1.GetValue()) msg = sub msg = 'bossierbossman@yahoo.com' msg...
0
by: Mahesh Devjibhai Dhola | last post by:
Hi, I want to develop p2p (peer-to-peer) communication connection for chat in ..Net (Lang: c# - preferable) NOTE: if two LAN are behind their own router then also it should work as yahoo, msn...
2
by: autogoor | last post by:
2. autog...@yahoo.com Aug 1, 10:55 am show options Newsgroups: comp.infosystems.www.authoring.html, comp.lang.javascript From: autog...@yahoo.com - Find messages by this author Date: 1 Aug...
2
by: Someone | last post by:
Using C#, ASP.NET I'm trying to implement Yahoo search API. I can sent the HTTP request and get back the results. The problem I have is that I don't know how to use XPath with the results than...
6
by: erdem kemer | last post by:
i cant send mail to yahoo mail or hotmail while i can send my other mail accounts (pop3) is it becouse yahoo and hotmail is web-based mail here is the code MailMessage mailMsg = new...
4
by: joe_public34 | last post by:
Hello all, I'm trying to write a script to log into Yahoo! (mail, groups, etc), but when I pass the full URL with all form elements via Python, I get a resutling 400 - Bad Request page. When I...
2
by: Dave Lee | last post by:
My apologies for probably being in the wrong group, but there does seem to be some discussion possibly related to my problem. I have a typical, personalized "my.yahoo" page and recently most all of...
0
by: Page O Rama | last post by:
Hi, R U BLOCKED ON MSN,YAHOO,ICQ OR AOL Messenger By Your Friend, Then What are you waiting for.Visit one of the link below to find out who has blocked you in his/her friend list. MSN Block...
1
by: PeterAlt | last post by:
I have a Yahoo store. In order for me to access via javascript or HTML (on the client side) any information stored in Yahoo's product fields, I have to use something that looks like this... ...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.