DotNetNuke模块Unhandled error loading module问题解决

总算搞定了.
搞了个HelloWorld的模块总是出现加载模块错误的提示.

经过N次查看发现这个小问题,头都大了.故写出来,希望和别人能轻松解决问题.
愿来,<%@ Control Inherits="HelloWorld.HelloWorld" CodeBehind="HelloWorld.ascx.vb" language="vb" AutoEventWireup="false" Explicit="True" %> <%@ Control Inherits="HelloWorld.HelloWorld" CodeBehind="HelloWorld.ascx.vb" language="vb" AutoEventWireup="false" Explicit="True" %>  
<%@ Control Inherits="HelloWorld" CodeBehind="HelloWorld.ascx.vb" language="vb" AutoEventWireup="false" Explicit="True" %>
改成
<%@ Control Inherits="HelloWorld.HelloWorld" CodeBehind="HelloWorld.ascx.vb" language="vb" AutoEventWireup="false" Explicit="True" %>
就Ok了
原文地址:https://www.cnblogs.com/zzandww/p/90135.html