Reputation: 23
I want to have a link on children pages that is not only the name of the parent page, but also links to the parent page in DNN.
Upvotes: 2
Views: 684
Reputation: 900
Use this in your skin ascx file
<a href="<%= ((DotNetNuke.Entities.Tabs.TabInfo)PortalSettings.ActiveTab.BreadCrumbs[ PortalSettings.ActiveTab.Level - 1 ]).FullUrl %>">
<%= ((DotNetNuke.Entities.Tabs.TabInfo)PortalSettings.ActiveTab.BreadCrumbs[ PortalSettings.ActiveTab.Level - 1 ]).TabName %>
</a>
Note: this is for a C# skin.
Upvotes: 4