Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sitemap problems

Status
Not open for further replies.

seabaz2000

IS-IT--Management
Feb 24, 2006
79
IE
Hi
When using the I am having a problem that while traversing back through the sitemap on my web portal. When I click on a particular node it will not display and just goes back to the default page. I can see in the URL that the page in question is not present i.e. the pagename.aspx? is not present before the question mark. Not sure how to fix this as I am using the default provider with an XML tree. i.e The Web.sitemap file.
Thanks in advance for any help.
 
Can we see the sitemap XML? Are you having trouble with the SiteMapPath?
 
Hi
Yes the problem is with the siteMapPath the xml is
Code:
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="[URL unfurl="true"]http://schemas.microsoft.com/AspNet/SiteMap-File-1.0"[/URL] >
    <siteMapNode url="" title=""  description="" roles="*">
		<siteMapNode url="Default.aspx" title="Home"  description="Home Page" roles="*"/>
		  <siteMapNode url="ModelList.aspx" title="Model View"  description="Process Model Selection Page" roles="DashboardUser">
			  <siteMapNode url="ProcessDiagram.aspx" title="Process View"  description="Interactive Process Diagram View" roles="DashboardUser">
				  <siteMapNode url="MetricCharts.aspx" title="Process Metrics Charts" description="Collection of process Metric Charts" roles="DashboardUser">
					<siteMapNode url="CTChart.aspx" title="CycleTime SPC Chart" description="Detailed Chart Analysis of Cycle Time" roles ="DashboardUser"/>
					<siteMapNode url="HistogramPage.aspx" title="CycleTime Distrubtion Histogram" description="Distribution of Cycle Time Values between two dates" roles ="DashboardUser"/>
					<siteMapNode url="SPCChart.aspx" title="SPC Sample Analysis" description="Cycle Time Data SPC Statistics" roles ="DashboardUser"/>
				</siteMapNode>
			</siteMapNode>
		</siteMapNode>
		<siteMapNode url="Organisational.aspx" title="Organisational View"  description="Overview of Organisational Business Metrics" roles="DashboardUser"/>
		<siteMapNode url="Membership.aspx" title="Administration"  description="Configuration and Customization of Page Content" roles="DashboardAdministrator"/>
		<siteMapNode url="Contacts.aspx" title="Contacts"  description="Contact Information" roles="*"/>	
    </siteMapNode>
</siteMap>
The Problem seems to occur when traversing back to the process diagram section of the site.
Regards
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top