Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Breadcrumb Navigation bar

Reply
Thread Tools

Breadcrumb Navigation bar

 
 
DBdealer via DotNetMonster.com
Guest
Posts: n/a
 
      09-08-2006
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

--
Message posted via DotNetMonster.com
http://www.dotnetmonster.com/Uwe/For...p-net/200609/1

 
Reply With Quote
 
 
 
 
Kris
Guest
Posts: n/a
 
      09-08-2006
I had designed a breeadcrumb in my previous project based on the URL.
If your site is structered well, you parse the URL and render out the
default page of each level.

For example if URL is
www.test.com/Market/Business/Brand.aspx
Breadcrumb renders it as
Home->Market->Business

Hope this help you.

Best regards,
Krishna
http://www.bitlasworld.com/



DBdealer via DotNetMonster.com wrote:
> 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
>
> --
> Message posted via DotNetMonster.com
> http://www.dotnetmonster.com/Uwe/For...p-net/200609/1


 
Reply With Quote
 
 
 
 
clintonG
Guest
Posts: n/a
 
      09-08-2006
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



"DBdealer via DotNetMonster.com" <u26307@uwe> wrote in message
news:65fba4c535ee2@uwe...
> 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
>
> --
> Message posted via DotNetMonster.com
> http://www.dotnetmonster.com/Uwe/For...p-net/200609/1
>



 
Reply With Quote
 
DBdealer via DotNetMonster.com
Guest
Posts: n/a
 
      09-11-2006
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

--
Message posted via http://www.dotnetmonster.com

 
Reply With Quote
 
 
 
Reply

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 Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Navigation bar (address bar) has stopped working Miara Transportation Information Firefox 4 04-26-2006 06:50 PM
how to do navigation bar e viewing fram with the same scrolling bar? Eswa HTML 0 08-30-2005 04:47 PM
Want recursive SQL query function to generate breadcrumb navigation ASP General 2 03-30-2005 02:25 PM
Re: disable title bar, status bar, and address bar of a browser window John Hann ASP .Net 0 08-21-2004 05:07 AM
disable title bar, status bar, and address bar of a browser window Matt ASP .Net 0 08-21-2004 03:50 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57