This is one that threw me for a long time, but the solution is really pretty simple. Simple enough that I don’t understand why there isn’t more documentation on it. Here’s the scenario: You have a module with two, or…
Tag: modules
DotNetNuke and the Tab Module Drop Down
Every build something you’re certain you need, finish it, and then realize there’s a better way, but you love the solution so much you can just trash it? That’s the origin of this post. I’m sure I’ll need this later…
DotNetNuke and Custom Permissions
While creating my own DotNetNuke 5 modules I found myself adding all kinds of custom permission in the code, but then the admin users didn’t have any access to change them. I found myself having to update the code every…
How to Uninstall a DotNetNuke module
These instructions cover uninstalling a module from DotNetNuke 05.06.03, but should be good for DotNetNuke 5 installs. If you are having trouble with a module on a particular page and are unable to remove it from the page, uninstalling the…
How to Manually Install a DotNetNuke Module
These instructions cover setting up a dynamic DotNetNuke module in Visual Studio 2010 and manually installing the module in DotNetNuke. While these instructions are based on DotNetNuke 05.06.03 they are applicable to all of DotNetNuke 5 versions. These instructions do…
How to Create a Module Install Package (Basic)
These instructions cover creating a basic Install Package for DotNetNuke version 05.06.03 (45). Stay tuned for updates on more complex installs. assume that you have successfully manually installed your module and that the App_Code and DesktopModules folders contain all the…
Retrieve Dot Net Nuke Custom Module Settings
If you’re creating custom modules for DotNetNuke you’ve certainly tried to add your own settings to the settings.ascx in the default module setup. Creating your settings happens in 5 steps. Where ever you see “settingname” replace with your setting’s name:…