
If you’ve ever built a custom module where it compiled without error and then you attempt to put it on a page and the whole thing just freezes up? Maybe you edited the extension settings of an existing module because…
A few months ago, we upgraded a client’s development and production sites from DNN 6 to DNN 7.3. Other than a few minor issues, the upgrades went well and the sites have been running very well. Recently, we started encountering…
The Visual Studio Starter Kit allows you to create a compiled DotNetNuke module that will be more compact, faster, and hide your source code from prying eyes. The following instructions will get you started and well on your way to…
After I upgraded to DNN6 I discovered the PopUpURL class. Like most DNN classes there’s very little in the way of documentation and I had to stumble around with it for awhile to get it to work. In the end,…
Scenario: In my DotNetNuke 6 custom module the treeview crashed on postback in view mode, but worked properly in edit mode Solution: In my case I had an UpdatePanel in the ascx control. To update all my modules to work…
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…
I recently ran into this problem: I have a DotNetNuke module that logs activity via a previously installed module. Several of my existing modules call the logging module without a problem, but then I created a new module and after…