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][1]
http://stackoverflow.com/questions/291908/using-web-sitemap-with-dynamic-urls-url-routing
But i didn't get how to use my custom DynamicSiteMapPath in my page. I did like this :
in top of my master page :
<%@ Register TagPrefix="custom" Namespace="MD.Utility" %>
and in the content :
<custom:DynamicSiteMapPath ID="DynamicSiteMapPath1" ruat="server" SkipLinkText="">
</custom:DynamicSiteMapPath>
There is no Error Message nor node ! am i doing wrong ? or do i need to do some thing else more ?
Thanks in advance