AJAX 1.0 Problem

Discussion in 'ASP.NET 2.0' started by snoed, Feb 27, 2007.

  1. Hi,

    I got the error. My project is on ASP.NET 2.0, AJAX 1.0. Can you help me?

    Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

    Parser Error Message: Could not load file or assembly 'Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. (E:\web\futbolmerke\htdocs\web.config line 70)

    Source Error:





    Code:
    Line 68: 		</httpHandlers>
    Line 69: 		<httpModules>
    Line 70: 			<add name="WebResourceCompression" type="Microsoft.Web.Handlers.WebResourceCompressionModule, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
    Line 71: 			<add name="ScriptModule" type="Microsoft.Web.UI.ScriptModule, Microsoft.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
    Line 72: 		</httpModules>
     
  2. It appears you're using Atlas versions, things have changed from the old Microsoft.Web methods.

    The current script module is:
    <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

    Notice how Microsoft.Web.UI.ScriptModule, Microsoft.Web.Extensions became System.Web.Handlers.ScriptModule, System.Web.Extensions ?
     
  3. I had used same version but I downloaded last ajax version. It works. Thanks..
     

Share This Page