Microsoft JScript 运行时错误: 'Sys' 未定义解决方案

时间:2021-08-31 16:18:12

在.net2.0中我们在使用AJax的时候,有可能会出现不起作用,仍然还是刷新的效果,而且还会提示Microsoft JScript 运行时错误: 'Sys' 未定义 解决方案的错误,可以采用下面的方法解决

解决方案是向项目所在webconfig 的<system.web>节点下添加如下代码:   

 <httpHandlers>
      <remove verb="*" path="*.asmx"/>
      <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
      <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>

    </httpHandlers>

    <httpModules>
      <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

    </httpModules>

但是在.net3.5中就不会出现上面的情况,这就是说.net3.5比.net2.0强多了