Thanks Dave for pointing me in the right direction.
I've found information on the PathSeparatorTemplate in the VS 2005 Help:
ms-help://MS.VSCC.v80/MS.MSDNQTR.v80.en/MS.MSDN.v80/MS.NETDEVFX.v20.en/cpref/html/P_System_Web_UI_WebControls_SiteMapPath_PathSeparatorTemplate.htm
I'm working on the Personal Web Starter Kit in Beta 2. Based on the information in Help, I've updated my SiteMapPath in Default.Master to look like:
<div class="nav">
<asp:SiteMapPath
id="SiteMapPath1" runat="Server"
RenderCurrentNodeAsLink="false">
<PathSeparatorTemplate>
<asp:Image id="Image1" runat="server" ImageUrl="~/Images/pathsep.gif" />
</PathSeparatorTemplate>
</asp:SiteMapPath>
|
<asp:LoginStatus ID="LoginStatus1" Runat="server" />
</div>
Unfortunately this doesn't seem to work. Looking at the HTML source of the page that gets generated, I get only a blank space. I can confirm that the image path is valid.
Do I have to add anything to Default.Master.vb? Looking at the Help page, it looks like there are some code that may need to be added but I thought that may only be required if I want to programatically control the PathSeparatorTemplate?
Any idea where I'm going wrong? I'm a bit of a noob.
Regards,