Questions tagged [dotnetnuke]

A .NET open source content management system and web application development framework. Also goes by the names DotNetNuke, and DNN Platform and Evoq (the Commercial Product built upon DNN Platform).

The DNN (DotNetNuke) Platform is a CMS originally based on a Microsoft .NET example web application called IBuySpy portal, it was first released under the moniker IBuySpy Workshop. It is an open-source project (MIT license) and part of the .NET Foundation. There are also commercial solutions built by DNN Software, including Evoq Content. Overall, the platform runs over 700,000 known production websites.

Originally DNN was written in VB.NET. With version 6 of DNN, a switch was made to C# as the development language for the core platform. The name changed from DotNetNuke to DNN Platform in 2013 (with the commercial solutions changing from Professional Edition and DNN Social to the Evoq Suite of solutions).

More information and additional support resources can be found using the following links.

  • dnncommunity.org - The official DNN Community Website, including blogs & discussion forums
  • dnndocs.com - The official DNN Platform Documentation
  • GitHub Repository - Where all source code, bug reports, feature request,s and releases can be obtained from
  • Security Center - A listing of all known security issues and mitigations
  • DNN Store - the official marketplace for DNN extensions
3491 questions
1
vote
2 answers

How to Export Gridview Data in Pdf in DotNetNuke(DNN)?

How to Export Gridview Data in Pdf in DotNetNuke(DNN)? The Code Behind code are:- Response.ContentType = "application/pdf"; Response.AddHeader("content-disposition",…
1
vote
1 answer

Open Module Url in DotNetNuke?

I am trying to open a module popup which binds, but it shows an error. The code I'm using is: protected void grdStudentAttendanceList_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName == "ViewStudent") { …
Samuel Gerges
  • 251
  • 3
  • 10
1
vote
1 answer

How to enable Windows Authentication for DNN

Sorry my question might be duplicate but i dint find any correct solution.So im posting this question again... First i have deployed a DNN website with sql server authentication.Site was working fine. Later we re installed the sql server 2008. So im…
user2046904
  • 73
  • 1
  • 2
  • 7
1
vote
1 answer

Handling Exception in Dotnetnuke

I want to use Dotnetnuke's built in exception handling which provides detail information of the error occured, i have tried the EventLogController Class to log error, but unfortunately its not logging an error, also i want to display a customized…
Abbas
  • 4,948
  • 31
  • 95
  • 161
1
vote
1 answer

DotNetNuke 5 - Are there any best practices for migrating existing aspx-based website into DotNetNuke

our website resides on iis-server and is completely written with Expression Web using templates and pure html-pages based on those templates. There's also some slight functionality built using c# in code behind. Now i've been looking into DotNetNuke…
juarola
  • 689
  • 2
  • 10
  • 20
1
vote
2 answers

How to make DNN textfield readonly

How do you make a textfield readonly in DotNetNuke? I have this code but its not working: DnnFormTextBoxItem.Enabled = false;
Owen Lilly
  • 171
  • 3
  • 10
1
vote
2 answers

Can I use telerik.dll in DotNetNuke custom modules for free

I am building a dnn site where I want to use telerik controls. Now the telerik.dll is included in DotNetNuke. My question is can I reference this dll and use it in my modules for free? (I am building commercial site)
1110
  • 7,829
  • 55
  • 176
  • 334
1
vote
1 answer

dotnetnuke module creation using .ASCX file

I was trying to understand how DotNetNuke dynamically loads web user controls (.ascx) that have statically defined event handlers. I've tried to go through the documentations available on DotNetNuke's website, but couldn't find a proper answer to my…
naveen
  • 219
  • 4
  • 12
1
vote
1 answer

My web site shows different content in the mobile version

I created a website with dotnetnuke that has a responsive skin. In the "normal" version, it works fine, but there is one page that does not show its content as it should in the mobile version. This is the page in question,…
Rui Martins
  • 2,164
  • 7
  • 33
  • 52
1
vote
1 answer

Dotnetnuke and gzip

I am currently running Dotnetnuke version 4.9.4 and would like to enable gzip compression. My concern is that IE6 prior to SP2 has known issues with gzipped content. Does the Dotnetnuke framework handle the gzip issues with IE6 or will I need to…
klaasens
  • 113
  • 2
  • 8
1
vote
2 answers

Dotnetnuke WebService with jquery Post

I am developing a dotnetnuke module and have lots of issues connecting to a webservice through javascript to retrieve data. I have the folloiwng javascript: function Test() { $.ajax({ type: "POST", url:…
Kelish
  • 83
  • 2
  • 10
1
vote
1 answer

What's the substitution of GetPortalByAlias in DNN 7.02?

I used to use GetPortalByAlias function in one of my modules in DNN 6.2.6 and below. Now I find out that in DNN 7 this function has omitted. What's the substitution of this function in DNN 7.02? Assume that my code is like this: IDataReader dr = …
atabrizi
  • 908
  • 1
  • 13
  • 29
1
vote
2 answers

DNN7 module cannot debug due to break point not hit

When i using the Default DNN7 create modules (DotNetNuke Compiled Module), i want try to debug on Page_load CustomModuleController objCustomModules = new CustomModuleController(); and make and breakpoint on the line, or anyline on Page_load, it…
user1865039
  • 131
  • 1
  • 2
  • 10
1
vote
2 answers

How to use transactions in DotNetNuke (entangled with L2S)?

I use L2S at my module. The problem occurs while I'm using the default DNN entities at the same TransactionScope with my L2S data access, then I get a DTC request which I want to avoid. How can I share the connection/transaction for both DNN…
Eran Betzalel
  • 4,105
  • 3
  • 38
  • 66
1
vote
0 answers

NullReferenceException after Install Wizard for DotNetNuke 6.1.1 on Azure

I'm trying to migrate an existing 6.01.01 site to Windows Azure web pages for testing some new features. I had so much trouble going about doing so that I decided to start over and just get version 6.1.1 running on Azure from the community install.…