DotnetNuke Module Integration

I created a DNN module for polling. This module is created as a project as part of my DNN project project. I would like to integrate this module into the DNN website. Is there any chance of this? I am already modifying user controls to inherit PortalModuleBase using my Poll project. I looked through this tutorial http://www.adefwebserver.com/DotNetNukeHELP/DNN4_SurveyModule/Default.htm , but I understand that this is not the same case, as it shows you how to create a module in a DNN website. thanks for the help

+3
source share
1 answer

You should start with the DNN module wizard for the visual studio that ships with the original DNN package. This will give you the "hello world" module to begin with.

You also need to create a manifest file for your module. Check out the DNN Module Packager .

This XML file will contain the relative paths of all module files during installation. The manifest file is zipped together with all your module files and is installed in the DNN Host menu when you log in as a host user.

Most of these information and starter modules can be found on the website.

0
source

Source: https://habr.com/ru/post/1730148/


All Articles