我有一个httpmodule类库,其实现方式如以下链接
所示http://www.c-sharpcorner.com/uploadfile/Ashush/creating-a-sharepoint-portal-for-mobile/
我已将dll添加到GAC并创建了一个web.config条目,如下所示:
<modules runAllManagedModulesForAllRequests="true">
<add name="MasterPageHttpModule"
type="MasterPageHttpModule.MasterPageHttpModule,MasterPageHttpModule, Version=1.0.0.0, Culture=neutral,PublicKeyToken=912f5a0b40d6a709"/>
</modules>
我收到以下错误。
无法从中加载xxxx类型 程序集xxxxx,版本= 1.0.0.0, 培养=中性公钥= XXXXXX&#39;
我无法弄清楚我哪里出错了。请帮助我。
答案 0 :(得分:2)
您的模块类可能不公开,或者您的DLL的旧版本仍可能在W3WC中加载。验证您的类是否公开并尝试IISRESET。