Explanation needed
-
what is this doing in web.config .. what if i remove this <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/> <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/> <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/> </dependentAssembly>
-
what is this doing in web.config .. what if i remove this <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/> <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/> <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/> </dependentAssembly>
What do you think it might do ? Why might you do it ? the word dependant means, that it's something that's required, you depend on it.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
What do you think it might do ? Why might you do it ? the word dependant means, that it's something that's required, you depend on it.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
we bind custom built assemblies .. depending on the version of the framework or the processorarchitecture these are not custom built assemblies they are system assemblies.. and only these two are binded ... is this not required for other system assemblies??? i have taken this from an auto generated web.config
-
we bind custom built assemblies .. depending on the version of the framework or the processorarchitecture these are not custom built assemblies they are system assemblies.. and only these two are binded ... is this not required for other system assemblies??? i have taken this from an auto generated web.config