Questions tagged [dotnetnuke-module]

DotNetNuke is a web content management system based on Microsoft .NET. The Community Edition is open source.

DNN Platform (formerly "DotNetNuke Community Edition" content management system) is open source software that is intended to allow management of websites without much technical knowledge, and to be extensible through a large number of third-party apps to provide functionality not included in the DNN core modules. Skins can be used to change the look of a website using DNN.

The default functionality of DotNetNuke can be expanded by adding third-party modules, either from an existing library of modules, or through in-house development of custom functionality. The DotNetNuke framework provides basic functionality such as security, user administration and content management, while modules are used to tailor the web site for specific deployment needs.

http://en.wikipedia.org/wiki/DotNetNuke#Modules

366 questions
2
votes
3 answers

DotNetNuke intermodule communication

I'm looking into doing inter-module communication with DotNetNuke 4.8.4 - and am wondering if anyone has any good examples of doing this. I understand that you implement IModuleCommunicator on the sender, and IModuleListener on the receiver - but…
Scott Ivey
  • 40,768
  • 21
  • 80
  • 118
2
votes
1 answer

Restricting uploads in the DotNetNuke Text Editor using the "add link"

I am building a DotNetNuke 5.6 Module. The module contains a form with some textboxes and the dotNetNuke Rich text Editor. Users are supposed to fill this form and it is saved to the database. Everything is working just fine. The problem though is…
Emad Gabriel
  • 3,677
  • 7
  • 37
  • 49
2
votes
1 answer

How to create a friendly URL with custom page name in DotNetNuke?

Background DotNetNuke supports the ability to give a URL a custom page name, to make the URL more human friendly, e.g. instead of /Page/itemId/14/Default.aspx, you can have /Page/itemId/14/My-Article.aspx. The API for achieving this is via…
bdukes
  • 152,002
  • 23
  • 148
  • 175
2
votes
2 answers

DotNetNuke Module Development: Displaying a Server Control only when the logged in user is an administrator or higher?

Can one specify inside an aspx page (without code-behind) only to display a user control if the logged in user has administrator rights?
leeand00
  • 25,510
  • 39
  • 140
  • 297
2
votes
1 answer

Some problems with basic DotNetNuke localization methods

I'm writing a simple DNN module - using DNN 5.6.1 and currently just working direct in a VB.Net source file within the DesktopModules subfolder of a DNN website. To localize an error message within the module, I'm trying to use: Dim baseString As…
Stuart
  • 66,722
  • 7
  • 114
  • 165
2
votes
2 answers

Error When Installing DotNetNuke (5.5) Module - Error reading the zip package

I have created a custom module on my local machine and have installed it to a remote server successfully a number of times using standard DNN deployment methods. Suddenly, when I try to install a new version, I receive the following error: Error…
Smithers
  • 21
  • 2
2
votes
1 answer

DNN MVC module - How do I access settings?

I'm using Chris Hammond DNN module template to learn about DNN MVC module. I added another property in Settings class called Display and it is saved as "MessageList_Display" in the database and I get see the Display's value in Module's settings as…
Jack
  • 9,843
  • 23
  • 78
  • 111
2
votes
2 answers

hotcakecommerce custom payment method doesnt work

i have implement all method for custome payment method , upload dll file to bin folder and check payment method in admin panel . paymet method appear in chekcout page but no one of my custom payment doesnt run . is there any full source of custom…
Moslem7026
  • 3,290
  • 6
  • 40
  • 51
2
votes
1 answer

how to use portal skin in modules with multiple ascx files in DNN

I have a problem with modules that uses multiple ascx-files. when loading the module all looks fine, the correct skin is loaded but when i navigate to an different ascx file within the module the skin changes to admin skin and i can´t get around…
theonealf
  • 89
  • 1
  • 11
2
votes
1 answer

DotNetNuke7:-Web Api is not triggering on call

I have implemented a module using Angular Js and TypeScript in DotNetNuke7 where i have implemented my all Input Forms and js in a web project named as customerNew and than added a Web APi into a another project named as CustomerNewController which…
2
votes
1 answer

DNN: The Web Application Project xxx is configured to use IIS. The Web server "http://dnndev/desktopmodules/xxx/' could not be found."

When following a tutorial for setting up a development environment for DotNetNuke modules, creating a new project from the project templates caused the following error: The Web Application Project xxx is configured to use IIS. The Web server…
tekiegirl
  • 1,229
  • 5
  • 17
  • 30
2
votes
1 answer

In Built Video Streaming Facilities Available in DOTNETNUKE?

In Built Video Streaming Facilities Available in DOTNETNUKE?
2
votes
3 answers

DotNetNuke Module keeps converting itself into Application in IIS7

Bit of a weird one. For some reason one of my DNN modules keeps being converted into an Application in IIS7 in my development environment. Meaning when I try to view a page that contains that module it can't find the module correctly. It's ok if I…
HuwD
  • 1,800
  • 4
  • 27
  • 58
2
votes
1 answer

Accessing page or module level functions from a razor view

I'm currently using razor to render some views in DotNetNuke and everything is working fine except for one thing I'm missing. I'm trying to get access to some module level methods such as EditUrl etc. but can't seem to figure out how to go about…
Richard Edwards
  • 1,379
  • 1
  • 17
  • 30
2
votes
2 answers

How to import JQuery to custom dnn module

I have created custom DNN module that should use some JQuery plugins. I loaded plugins fine. But getting error: Uncaught TypeError: undefined is not a function imagesloaded.js?cdv=18:93 Uncaught TypeError: Object [object Object] has no method…
1110
  • 7,829
  • 55
  • 176
  • 334