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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

sitemapPath question

Status
Not open for further replies.

arada1

MIS
Dec 3, 2006
47
0
0
US
Hi all,

My problem is say if i need to go back one level to cost Index I got
>>Home >> cost Index

and I do not know how to get rid of >> mark infront of Home. Can someone point me why this is happening

here is my sitemappath
Home >> Cost Index >> Cost Index 2004
Thank you all for the help.
 
Some relevant code would be useful to help find an answer.

------------------------------------------------------------------------------------------------------------------------
"Men occasionally stumble over the truth, but most of them pick themselves up and hurry off as if nothing ever happened."
- Winston Churchill
 
hi all,
below is my sitemap and sitemappath code .

<asp:SiteMapPath ID="SiteMapPath1" runat="server"
EnableViewState="False" ParentLevelsDisplayed="2"
CssClass="siteMapPath"
CurrentNodeStyle-CssClass="currentNodeStyle"
NodeStyle-CssClass="nodeStyle"
PathSeparatorStyle-CssClass="pathSeparatorStyle"
RootNodeStyle-CssClass="rootNodeStyle" Font-Bold="True" Font-Size="Medium">
<PathSeparatorStyle CssClass="pathSeparatorStyle" />
<CurrentNodeStyle CssClass="currentNodeStyle" />
<NodeStyle CssClass="nodeStyle" />
<RootNodeStyle CssClass="rootNodeStyle" />

</asp:SiteMapPath>


<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns=" >
<siteMapNode>

<siteMapNode url="Default.aspx" title="Home" description="" roles="">
<siteMapNode url="costIndex/cost.aspx" title="Cost Index" description="" roles="">
<siteMapNode url="itemRpt/ItemRpt.aspx" title="Cost Index 2006" description="" roles="" />
<siteMapNode url="a2.aspx" title="Cost Index 2005" description="" roles="" />
<siteMapNode url="b2.aspx" title="Cost Index 2004" description="" roles="" />
<siteMapNode url="c2.aspx" title="Cost Index 2003" description="" roles="" />
<siteMapNode url="d2.aspx" title="Cost Index 2002" description="" roles="" />
</siteMapNode>
<siteMapNode url="B.aspx" title="Letting Report" description="" roles="">
<siteMapNode url="3.aspx" title="3" description="" roles="" />
<siteMapNode url="4.aspx" title="4" description="" roles="" />
</siteMapNode>
<siteMapNode url="C.aspx" title="Item Report" description="" roles="">
<siteMapNode url="5.aspx" title="5" description="" roles="" />
<siteMapNode url="6.aspx" title="6" description="" roles="" />
</siteMapNode>
<siteMapNode url="A1.aspx" title="Financial Report" description="" roles="">
<siteMapNode url="12.aspx" title="1" description="" roles="" />
<siteMapNode url="23.aspx" title="2" description="" roles="" />
</siteMapNode>
<siteMapNode url="A11.aspx" title="LAT/LONG Report" description="" roles="">
<siteMapNode url="121.aspx" title="1" description="" roles="" />
<siteMapNode url="231.aspx" title="2" description="" roles="" />
</siteMapNode>

<siteMapNode url="A113.aspx" title="Contact us" description="" roles=""></siteMapNode>
</siteMapNode>


</siteMapNode>
</siteMap>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top