Tagged Questions
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
157 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
2k 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
217 views
IHierarchicalEnumerable to SiteMapPath?
exists any simple method to use my IHierarchicalEnumerable class in SiteMapPath control?
Thanks
1
vote
1answer
1k views
Is there a way to programmatically set the current node of a SiteMapPath control?
My site has a few pages that point to the same child page. I'm using a xml site map that will not allow me to duplicate a SiteMapNode with the same Url. My idea was then to give my SiteMapPath ...
0
votes
0answers
273 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
0answers
41 views
How do I display sitemap for group pages?
I want to display:
home>First page
by technic sitemap for pages: first.aspx and first.aspx?id=12 and first.aspx?id=13 and first.aspx?id=14 and other sample pages.
How can I do this?
0
votes
1answer
128 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
2answers
483 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
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" ...