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
10
votes
1 answer

Navigating between DotNetNuke module controls using EditURL() or NavigateURL()

OK I'm new to DotNetNuke and need to write a simple module in DNN that will display an article for everyone, and allow the admin to edit the article/add a new one. I have a test page that contains a DNN module with one module definition and two…
hotbot86
  • 243
  • 1
  • 5
  • 12
8
votes
2 answers

DNN: Using multiple web user controls in one module and showing different controls in different pages

I'm a DotNetNuke newbie. Please be gentle. I'm using the "DotNetNuke 6 Compiled Module" template to build my module. I already have View.ascx control in the project and have added another control called test.ascx. My question is: how do I show…
astro boy
  • 1,410
  • 1
  • 11
  • 16
7
votes
2 answers

DNN 5 - Can't get current ModuleId from nested user control in custom module

I'm writing a custom module for DNN 5, and I need a "Manage" link to be on every control in the module. I created a new UserControl ("ManagerLink") that inherits from PortalModuleBase, put my link into that control, and dropped that control on ALL…
roman m
  • 26,012
  • 31
  • 101
  • 133
7
votes
3 answers

DnnModuleAuthorize Attribute Always Returns Unauthorized in Web API

I'm trying to use this attribute on methods in the web API for a custom module: [DnnModuleAuthorize(AccessLevel = DotNetNuke.Security.SecurityAccessLevel.Edit)] but no matter what SecurityAccessLevel I set, I always get a 401 unauthorized…
Chris Searles
  • 2,322
  • 17
  • 32
7
votes
7 answers

DotNetNuke , The specified password for user account “sa” is not valid

I am installing DotNetNuke, during installation it is asking Database Password, I am giving the same password that I am using for SQL server but it is showing error. The specified password for user account “sa” is not valid, or failed to connect…
6
votes
1 answer

How to add database script in DNN custom module development package?

i have made a custom module on DNN ,created its package and integrated with another DNN application.It works fine.But after uploading the module in another DNN application i am creating module database manually.thats what my problem.. I want to…
M.Farrukh
  • 61
  • 1
  • 2
6
votes
1 answer

Accessing data with DAL2: Value cannot be null.Parameter name: con

I'm trying to access data with DAL2 in DotNetNuke. When I use the repository.Get() to get all fields of a certain table I sometimes get this error: 'Value cannot be null. Parameter name: con' public IEnumerable GetAll() { using…
6
votes
1 answer

DotNetNuke 7 - Edit page menu not working when adding ajax control to module

I am creating a simple DotNetNuke module and every time I add a control that contains ajax it somehow interferes with the edit page menu. The control in question is one from Syncfusion and it is the numeric textbox. The page and the menu…
Fayde
  • 193
  • 6
  • 16
5
votes
1 answer

Why do changes in DNN are not always visible on all servers in web farm?

Our farm consist of 2 web servers(We use DNN 6.0.2). If admin changes rights on a banner, module or picture, those changes are visible only on server on which that changes were done. On other server changes are not visible until cache cleaning from…
Andy
  • 429
  • 3
  • 9
5
votes
3 answers

Module Localization in DNN

I don't know much about the localization process in DNN. The question is that how can you localize a new module? Is it possible to include localization files with every module separately? What solutions can you come up with?
4
votes
3 answers

How to throw 404 in DotNetNuke module

I want to throw an 404 file not found exception from my module, but every exception is caught by DNN and does not show me my 404.aspx page (only the error page from DNN). In my web.config I've added:
jerone
  • 16,206
  • 4
  • 39
  • 57
4
votes
2 answers

How to use Skin.AddPageMessage() method?

I am developing a DNN module and I want to display an info message at the top of my ContentPane, not above the actual module. I have found that DotNetNuke.UI.Skins.Skin.AddPageMessage() should just do the thing. I am not getting the behavior I want…
Matus Nemcik
  • 240
  • 2
  • 13
4
votes
2 answers

What are some good Module Development Solution/Environments/Best Practices for Dot Net Nuke Modules

I've been developing modules for DNN since version 2 and back then I was able to easily able to run my module as I developed it on my environment and still easily deploy my module as a DLL. When version 4 came out and used the web site solution…
Jeff Martin
  • 10,812
  • 7
  • 48
  • 74
4
votes
2 answers

DNN 6 Module - How to leverage asynchronous calls

DotNetNuke 6 does not appear to support WebMethods due to modules being developed as user controls, not aspx pages. What is the recommended way to route, call and return JSON from a DNN user module to a page containing that module?
jhappoldt
  • 2,406
  • 1
  • 21
  • 24
4
votes
1 answer

How to update dotnetnuke userprofile image in codebehind?

I am building my own "user profile" module where one of the options, the user can change his default dnn profile image. I am having problems doing this "in the code behind". I am using c#. This is what I have so far: UserInfo myDnnUser =…
Mohsin JK
  • 561
  • 2
  • 8
  • 18
1
2 3
24 25