ptaylor965 6 Junior Poster

I have a SiteMapPath control to display a breadcrumb style navigation.

When i move from one page to another the SiteMapPath works correctly however when moving to the other pages the SiteMapPath disappears


The SiteMapPath is located on a MasterPage along with some text and a TreeViewNavigation and they remain visible

I have tried moving the SiteMapPath to the page its self but it still disappears


the pages that work have these headings

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Admin.aspx.vb" MasterPageFile="~/MasterPages/MasterPage.master" Inherits="Admin" %>

<asp:Content ID="Content" runat="server" ContentPlaceHolderID="Main">

AND

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" MasterPageFile="~/MasterPages/MasterPage.master"  Inherits="_Default" %>

<asp:Content ID="Content" runat="server" ContentPlaceHolderID="Main">

and the pages that dont work have these headings

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="LogIn.aspx.vb" MasterPageFile="~/MasterPages/MasterPage.master" Inherits="LogIn"%>

<asp:Content ID="Content" Runat="Server" ContentPlaceHolderID="Main">

AND

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="ProductDetail.aspx.vb" MasterPageFile="~/MasterPages/MasterPage.master"  Inherits="ProductDetail" %>

<asp:Content ID="Content" runat="server" ContentPlaceHolderID="Main">