John Mitchell to the answer:
Have you ever wanted to get at more than just <%= SkinPath %>in your skin?
Maybe you want to display the name of the currently Active Page?
<%=PortalSettings.ActiveTab.TabName %>
Or maybe you want to display the name of the Active Page's Root level Parent?
<%=PortalSettings.ActiveTab.BreadCrumbs(0).TabName%>
If you want the currently Active Page's immediate Parent Tab Name try this:
<%=PortalSettings.ActiveTab.BreadCrumbs(PortalSettings.ActiveTab.Level - 1).TabName %>
I know this is old but still helpful, thanks!
ReplyDeleteditto. this is still relevant. thx
ReplyDeleteThank you sir :)
ReplyDelete