So I can add a tab not to my setting popup for a module.
But I would like the module to access the code behind.
The problem I have is that to get the ascx page to show up as a tab in settings. I have to set
Inherits="DotNetNuke.Entities.Modules.ModuleSettingsBase"
And even though I set the codebehind file to “XXX.ascx.sc” the cs file does not get hit.
I have tried to set the inherits to the class name of the code behind and then have the class inherit from DotNetNuke.Entities.Modules.ModuleSettingsBase then then override LoadSettings() and UpdateSettings();
Like “public partial class DesktopModules_Start_MySettings : DotNetNuke.Entities.Modules.ModuleSettingsBase”
Public override void LoadSettings(){};
public override void UpdateSettings(){};
But I always get cant load DesktopModules_Start_MySettings
Please help.