[ASP.NET AJAX] 'Sys'未被定義
環境:XP sp3 、VS2005、IE8、asp.net 2.0
今天在測試的時候,發現一直出現這個錯誤
我是用 "新增" –> "網站" –> “檔案”的方式建立網站
後來參考了 http://social.msdn.microsoft.com/forums/zh-TW/236/thread/459538c8-cdce-46f2-9d60-0ed0ae1c7833/
在 Web.config 檔中,新增了以下,網頁就正常運作了 = =
<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>
<authentication mode="Windows"/>
三小俠 小弟獻醜,歡迎指教