I am stuck on one point, I have applied recently breadcrumb using MVC3 sitemap. It is working fine for actions where no parameter is there or all parameters have default values. Only problem is when I try it with action having some parameter(with no default values) like in action
public ActionResult Edit(int id)
How to include mvcSiteMapNode for such kind of action. I tried using
<mvcSiteMapNode title="EditTraining"
controller="HotelPolicy"
action="Create"
preservedRouteParameters="id"/>
but still of no use. Please someone suggest how to implement it.