I'm developing a custom module, and need to fetch the parent node from the current node. How is this accomplished?
Developer forum
Getting parent node from current page
Replies
You must be logged in to post in the forum
Like this?
Dim currentPage As Frontend.Page = PageView.Current.Page
Dim parentPage As Frontend.Page = PageView.Current.Page.FindPage(Base.ChkInteger(currentPage.Value("PageParentPageID")))
You must be logged in to post in the forum