我有一个虚拟目录。虚拟目录中包含web.config和文件夹bin,其中包含dll。
的web.config:
<configuration>
<configSections>
</configSections>
<appSettings />
<connectionStrings />
<system.web>
<httpHandlers>
<add verb="*" path="*.jpg" type="RS_Thumbnails.ImageResizeHandler, RS_Thumbnails.dll" validate="false" />
</httpHandlers>
</system.web>
</configuration>
bin有RS_Thumbnails.dll文件。但是这个dll找不到:
分析程序错误消息:无法加载文件或程序集 'RS_Thumbnails.dll'或其依赖项之一。系统找不到 指定的文件。
如何更正配置IIS?