Ok, so I'm building bread crumbs and depending on the value of the breadcrumb an image will be the seperator. So "HOME" will have one image and "SEARCH" will have another.
I know I can do this programatically (at least I ASSUME) but is there an easier way to do this? Can I link an image to a node based on the value of the node? Can I d...
I want to make a msdn style breadcrumbs navigation
...
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" url="~/Default.aspx" title="Home" description="Home Page" >
VS
<siteMapNode url="~/Default.aspx" title="Home" description="Home Page" >
So far it d...
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" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="~/Default.aspx" title="Overview" description="Overv...
Hello.
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 url="Default.aspx" title="Home" >
<siteMapNode url="hosting/Default.aspx" title="Hosting" />
<siteMapNode url="software/Default.aspx...
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 page? If so can anyone point me to the right direction?
This is what i envision
Master Pages has tab like navigation options and when they cl...
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 control a parent node to populate itself from, and then add on a SiteMapNode of the current page.
Has anyone else had to do something similar? ...
Hi,
exists any simple method to use my IHierarchicalEnumerable class in SiteMapPath control?
Thanks
...
hi.
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 removed, had its name changed, or is temporarily unavailable.
Please try the following:
Make sure that the Web site address displayed in ...
hi. 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 page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
...
If you use Server.Transfer to save the extra roundtrips caused by Response.Redirect, the SiteMapPath gets out of synch and displays the previous page information in the breadcrumb. I have spent hours trying to change the CurrentNode from code, but just can't get it to work. That particular property is read-only.
The MSDN recommendation ...
Hello, 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 :)
...
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:
http://localhost:8080/test.aspx/edit/2
and I need to know the "2" to get the site map.
Is there any method that I can use wild card
http://lo...
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 routes (as two nodes cannot exist with the same name) however when I browse the site and move from the iteration page to the story page, it only...
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 .
...
Hi
I'm naive in ASP.NET , I use web.siteMap and siteMapPath control in my Web app , I can define static address in web.siteMap , But i have pages that use QueryString as a parameter and show different result , Like : ~/NewsDetails.aspx?NewsId=X
So i followed and wrote my own custom DynamicSiteMapPath like the answer of [this address]...
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, depends on user's choice.
I've read many articles on the theme and choose this http://harriyott.com/2007/03/adding-dynamic-nodes-to-aspnet-si...