Breadcrumb Navigation bar

  • Thread starter DBdealer via DotNetMonster.com
  • Start date
D

DBdealer via DotNetMonster.com

I'm trying to build a breadcrum navigation bar for my website....please can
some one suggest me ways...It's a 100 page site and I need it for navigation
with the site....Thank you
 
C

clintonG

The ASP.NET 2.0 SiteMapPath is used to generate breadcrumb navigation. Get
into it by starting with this search term...

breadcrumb site:msdn2.microsoft.com

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
MAP 43°2'17"N 88°2'37"W : 43°2'17"N 88°2'37"W
 
D

DBdealer via DotNetMonster.com

Actually I'm using ASP.net 1.1.....so I don't get that control, I have to
create it manually....I'm being able to trace the previous page and split it
up into several parts as

'tracks the referrer url------>http://serverpath/username/page name
strUser = Request.UrlReferrer.ToString

'separate the string------> http://serverpath/username
str1 = strUser.Substring(0, strUser.LastIndexOf("/"))

'separate the "serverpath"------>http://serverpath
str2 = str1.Substring(0, str1.LastIndexOf("/"))
Session("serverpath") = str2

'separate the page name -------->/page name
tot_len = Len(strUser)
str3 = strUser.Substring(Len(str1) + 1, Len(strUser) - Len(str1))

Now the logic is to memorize this page name with an appropriate tag in a
some thing (array, stack.......or may be in the DB) My question is how to
performe this? Please help
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,482
Members
44,901
Latest member
Noble71S45

Latest Threads

Top