Hi,
I have DNN 1.0.9 installed and trying to add a module to it.
I am using VS 2003 and able to compile it with one error which I ignored as it was not important.
After adding the module I am receiving the following error
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load type 'DotNetNuke.Email'.
Source Error:
Line 1: <%@ Register TagPrefix="Portal" TagName="Title" Src="~/controls/DesktopModuleTitle.ascx"%>
Line 2: <%@ Control Language="vb" AutoEventWireup="false" Explicit="True" Codebehind="SponsorEmail.ascx.vb" Inherits="DotNetNuke.Email" %>
Line 3: <portal:title runat="server" ID="Title1" NAME="Title1" />
Line 4: <asp:Panel ID="pnlModuleContent" Runat="server">
Line: 2
I am thinking something wrong with "Inherits="DotNetNuke.Email" " or with Namespace in the code behind but unable to figureout what
This is the code behind code
Namespace DotNetNuke
Public MustInherit Class Email
Inherits DotNetNuke.PortalModuleControl
DotNetNuke is the project name, and email is the module name
Please help me to solve this problem
Thanks