Hi
I've created a module which makes use of the Key property of controls within a module. I've used this to navigate to different controls for both the public accessible site and the admin pages.
I've added the module to a page which uses a skin with a few other panels, the default control (i.e. no key property value set) displays fine and all other panels are there and have their appropriate modules within them. The url for this page is (http://localhost/style/TheSTYLIST/tabid/139/Default.aspx)
However when navigate to another control within the module (url: http://localhost/style/TheSTYLIST/tabid/139/mid/641/TopicId/2/Default.aspx) I lose all the other panels.
I've used the NavigateUrl(TabId, ControlKey, AdditionalParams) to create the links from control to control i.e.
DotNetNuke.Common.Globals.NavigateURL(PortalSettings.ActiveTab.TabID, "", "mid=" + ModuleId.ToString() + "&TopicId=" + topic.TopicId.ToString());
DotNetNuke.Common.Globals.NavigateURL(PortalSettings.ActiveTab.TabID, "PostingDetailPage", "mid=" + ModuleId.ToString() + "&TopicId=" + TopicId.ToString() + "&PostId=" + post.PostId.ToString())
(im using C#)
Please help, I've been pulling my hair out trying to figure out what I am doing wrong.