0

我有一个 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>    

我收到以下错误。

无法从程序集 xxxxx 加载类型 xxxx,版本=1.0.0.0,Culture=neutral,PublicKeyToken=xxxxxx'。

我无法弄清楚我哪里出错了。请帮助我。

4

1 回答 1

2

您的模块类可能不是公共的,或者您的 DLL 的旧版本可能仍在 W3WC 中加载。验证您的课程是否公开并尝试 IISRESET。

于 2013-08-12T14:51:09.040 回答