I need to develop a module for IIS. It's compiled as Strong Named and signed. 'gacutil.exe' placed it into the GAC succesfully. But if I'm trying to visit localhost IIS throws exception:
Could not load type 'NameSpace.Name'.
Exception Details: System.Web.HttpException: Could not load type 'NameSpace.Name'.
where NameSpace and Name are from my module's sourcecode.
I believe IIS looks for modules at C:\Windows\assembly (where modules are for .Net 2.0), but I can see my module at C:\Windows\Microsoft.NET\assembly\GAC_32.
How should I tell IIS to use another GAC folder?