Hi, I've developed a module which allows a user to do various things and therefore it also contains various user controls.
From the main user control in the module I navigate through it using the following syntax: Response.Redirect(DotNetNuke.Common.Globals.NavigateURL(PortalSettings.ActiveTab.TabID, ModuleCommands.ParentAcademyActivities.ToString(), "mid=" + ModuleId.ToString(), ModuleParameters.EducationTypeId.ToString() + "=" + educationTypeID));
That page (user control) gives the user an overview of available activities presented in a listview bound from a db and all that, so ya know ... the usual. The page does something. Anyway, now this particular user wants an HTML/Text module on that page.
Obviously the trouble here is that this isn't really a page, it's a user control in a module on a page.
Anyway, I tried going to the page with the default control in the module selected, allowing me to place an HTML/Text module on the page, but once I use navigateURL, it's gone. Tried putting an extra contentpane in the skin as an extra column and putting the html module there for testing, but it's still gone.
Any way I can facilitate this client's needs?
Tnx