Tagged Questions
3
votes
3answers
1k views
BreadCrumbs - ASP.NET - VS2008
In my old web app, asp.net 1.1 days, i had custom 'breadcrumbs' for site navigation. I want to redo my website using VS-2008. Does this have a built in breadcrumbs which can be placed on a master ...
2
votes
1answer
522 views
Breadcrumbs SiteMapPath and SEO-Friendly Routing
I have routing set up as follows:
void RegisterRoutes(RouteCollection routes)
{
routes.MapPageRoute("", "Home", "~/Default.aspx");
......
}
I'm implementing breadcrumbs using a SiteMapPath ...
2
votes
3answers
3k views
Is it possible use ASP.NET Sitemap to generate Breadcrumbs?
I want my ASP.NET site to have simple menu string aka Breadcrumbs.
I have created Sitemap with all required elements and registered into Web.config. For example:
<siteMap>
<siteMapNode ...
2
votes
4answers
155 views
Is adding attributes to nodes in the web.sitmap a bad idea?
I using SiteMapPath with an xml file for data. I would like to use the same file for another menu, but I need to have more information attached to each node.
<siteMapNode target="_blank" ...
1
vote
1answer
126 views
Breadcrumbs - don't show current node
With the SiteMapPath control (navigation breadcrumbs), is there any way to NOT show the current node you are on? I only want to show the parents. There is a property to RenderCurrentNodeAsLink, but ...
1
vote
1answer
1k views
dynamically built SiteMapPath in asp.net
I'm trying to build a dynamic site map on my site using SiteMapPath.
Should be like this:
Home > Products > %product_name% > Prices
where %product_name% is set dynamically in the runtime, ...
1
vote
1answer
1k views
Why there is “Skip Navigation Links” for my SiteMapPath in Firefox
Hi
I have a site map in top of my master page , When i run in Firefox the first node is "Skip Navigation Links" What's that ? And How can i get rid of that ? It's noticeable that that's not in IE . ...
1
vote
1answer
217 views
IHierarchicalEnumerable to SiteMapPath?
exists any simple method to use my IHierarchicalEnumerable class in SiteMapPath control?
Thanks
0
votes
0answers
263 views
Programmatically Change SiteMap in VB.NET When Leaving Page
I'm using the built-in SiteMap feature in ASP.NET with a static web.SiteMap XML file. I'm programmatically editing the SiteMap in some pages. I'd like to undo these edits when the user leaves.
...
0
votes
1answer
166 views
SiteMapPath Stops Displaying in ASP.NET 4
We have a SiteMapPath control on the page and this is bound to an XML Web.sitemap file with the default provider. We've had this site for years and have recently upgraded to ASP.NET 4.0 on IIS 7.5 on ...
0
votes
1answer
145 views
asp.net breadcrumb
I am having a problem with the breadcrumbs - when I use the breadcrumb to move back in the breadcrumb to the previous node in the sitemappath control is there way to store the data.
is there a way ...
0
votes
1answer
122 views
Navigation SiteMathPath
My application has a number of different users, currently there are different masterpages set up for them. The idea is for some type of breadcrumb in the system i.e. home > details > ...
What is the ...
0
votes
1answer
1k views
Using SiteMapPath to create a dynamic page title?
I currently use SiteMapPath to generate a breadcrumb for my ASP.net 3.5 (vb.net) pages and it works great.
Now I am trying to figure out how I might be able to use the same control to build a dynamic ...
0
votes
1answer
125 views
ASP.NET How to Skip Tabbing Over SiteMapPath?
How can I skip tabbing over the SiteMapPath? This is what I'm trying to do (code below), but it still focuses on the path links after a few TAB key presses.
<asp:SiteMapPath ID="smp1" ...
0
votes
1answer
427 views
SiteMapPath: change the title and link of the last link in chain
Hi
Can you advise please any solution?
I have a SiteMapPath control and instead of default functionality like
Home > Accounts > User Account
where "User Account" refers to ~/UserAccount.aspx
...
0
votes
1answer
151 views
Asp.net SitePathMap with multiple routes
I have a web site with two routes. Basically the user can do one of the following:
Project -> Iteration -> Story
or
Project -> Story
I have two .sitemap files to accomodate the two different ...
0
votes
2answers
469 views
How to automatically generate the site map path in page header?
I used web.sitemap to generate the site map path for my asp.net application.
and I can generate two lays just like:
http://localhost:8080/test.aspx
but If i need to generate the MVC path like this:
...
0
votes
1answer
114 views
SiteMapPath Asp.net at Java
how can i do SiteMapPath navigation like Asp.net at Java
(home -> product -> dvd -> ...)
Exist some lib or jar to do it ? Or some example, would be nice, any idea )
Thank you.
Thank you CraigTP :)
...
0
votes
1answer
82 views
my SiteMap don't work Correctly
What is this error when I use SiteMapPath . when I click One link in my webSite , this error appeared in a page . of course when I upload my website,I See this error :
The page cannot be found The ...
0
votes
1answer
99 views
Error SiteMap
What is this error when I SiteMapPath and Configure whit siteMap.of course when I upload my website,I showing this error : "The page cannot be found
The page you are looking for might have been ...
0
votes
2answers
1k views
SiteMapPath Disappears on sub page
For some reason on my page my SiteMapPath disappears.
Site structure:
WebApp
-Default.aspx
-> Reports\
----Default.aspx
----MyReport.aspx
Web.sitemap
<?xml version="1.0" encoding="utf-8" ...