Hi Niek,
There are actually 3 places in Web.config where you may need to specify the correct NeatUpload Assembly.
In the <system.web> <httpModules> you would need to add this:
<add name="UploadHttpModule" type="Brettle.Web.NeatUpload.UploadHttpModule, Brettle.Web.NeatUpload, Version=1.3.3520.16252, Culture=neutral, PublicKeyToken=c95290d92c5893c8" />
In the <system.web> <compilation ...><assemblies> section you would need this:
<add assembly="Brettle.Web.NeatUpload, Version=1.3.3520.16252, Culture=neutral, PublicKeyToken=c95290d92c5893c8"/>
If hosted in IIS 7 then you may need this in the <system.webserver><modules> section:
<add name="UploadHttpModule" type="Brettle.Web.NeatUpload.UploadHttpModule,Brettle.Web.NeatUpload,Version=1.3.3520.16252,Culture=neutral,PublicKeyToken=C95290D92C5893C8" preCondition="managedHandler" />
Hope it helps,
Joe