I am attempting to add my new control to the module definition.
The Control:
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="AuditDemo.ascx.cs"
Inherits="Audit.AuditDemo" %>
The CodeBehind:
namespace Audit
{
public partial class AuditDemo : PortalModuleBase
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
But NoMatter what I do the path that it shows to the folder "Audit" is:
DesktopModules/Audit/AuditTest.ascx and never AuditDemo.ascx.
Can anybody help?