I have a virtual directory. Virtual directory has web.config and folder bin with dll inside.
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 has RS_Thumbnails.dll file. But this dll can't be found:
Parser Error Message: Could not load file or assembly 'RS_Thumbnails.dll' or one of its dependencies. The system cannot find the file specified.
How to correct configure IIS?