I have a DNN module that displays a user control (view.ascx)
Everything is fine (I logged in) and I get the DNN settings menu.
however, when I add another control and load it like this:
string url = Globals.NavigateURL(PortalSettings.ActiveTab.TabID, "View_Details", "mid=" + ModuleId.ToString());
Response.Redirect(url);
I lose the settings link when loading a new control.
Any ideas? Is there a property somewhere to enable settings for a loaded user control?
source
share