After a lot of head banging i finally found a work around for this problem.....
Actually the problem is there with the ajax extensions the dll in the version 2.0 to fix this install the framework 3.5 (dotNetFx35setup.exe). This registers the 3.5 specific in the gac. Now Open you web.config file press ctrl + H and replace all occurances
of 1.0.61025.0 with 3.5.0.0 ----> then add the following tag just bellow the config sections
kunalkamboj
Member
12 Points
12 Posts
Re: Problem Adding Custom HTTP Module with Ajax(System.Web.Handlers.ScriptModule)
May 27, 2009 10:10 AM|LINK
Hi Praveen,
After a lot of head banging i finally found a work around for this problem.....
Actually the problem is there with the ajax extensions the dll in the version 2.0 to fix this install the framework 3.5 (dotNetFx35setup.exe). This registers the 3.5 specific in the gac. Now Open you web.config file press ctrl + H and replace all occurances of 1.0.61025.0 with 3.5.0.0 ----> then add the following tag just bellow the config sections
</configSections>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="1.0.61025.0" newVersion="3.5.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
and TAA DAAAA .... Happy days are back :)
See if this helps