Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDevelopment and...Development and...Getting StartedGetting Started Object reference not set to an instance of an object Object reference not set to an instance of an object
Previous
 
Next
New Post
9/10/2012 2:28 PM
 

Hi I'm gettin the following error from a module i've added to a page. 

Error: is currently unavailable. DotNetNuke.Services.Exceptions.ModuleLoadException: Object reference not set to an instance of an object. ---> System.NullReferenceException: Object reference not set to an instance of an object. at DotNetNuke.UI.Modules.ModuleHost.LoadModuleControl() --- End of inner exception stack trace ---
 I'm getting to the page from a buttom click on another ascx page within the module.

The code behind is as follows:

 protected void testbtn_Click(object sender, EventArgs e)
         {             Response.Redirect(Globals.NavigateURL(PortalSettings.ActiveTab.TabID, "theunitdetail", "mid=" + ModuleId.ToString())); 
        }

I've enabled the page within dotnetnuke.

Any ideas

Thanks
 
New Post
9/10/2012 5:10 PM
 
Found where I'd gone wrong. Where you create a custome page/control the code behind file has to be edited.

In the codebehind file for the ascx file I had to change the class to inheret from PortalModuleBase and override OnInit and add InitializeComponent()

public partial class UnitDetail : PortalModuleBase
{
override protected void OnInit(EventArgs e)
{
InitializeComponent();
base.OnInit(e);
}
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}

.........
.......
.......
 
New Post
9/10/2012 7:20 PM
 
Are you sure it also doesn't work without inheriting OnInit (and thus without the InitializeComponent-method)?

Normally just inheriting from PortalModuleBase should be sufficiënt to not let DNN generate errors whilst loading a modulecontrol.
 
Previous
 
Next
HomeHomeDevelopment and...Development and...Getting StartedGetting Started Object reference not set to an instance of an object Object reference not set to an instance of an object


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out