I created class as the follow:
namespace Viettronics.Utils
{
public class ViettronicsHttpApplication : DotNetNuke.Web.Common.Internal.DotNetNukeHttpApplication
{
public override void Init()
{
BootStrapper.ConfigureStructureMap();
base.Init();
}
}
}
Then, I inherit Global.asax from this class. But my website can not run and alert error in attachment image.
How way to inherit DotNetNukeHttpApplication?
