重裝系統後又裝了ajax 可是用的時候老是提示"錯誤:'sys'未定義",看了看以前做的項目,發現Web.Config裡面少了<httpHandlers>和<httpModules>兩項,後來在<system.web>添加後就ok了。
Code
1 <system.web>
2 <!--
3 設定 compilation debug="true" 將偵錯符號插入
4 已編譯的頁面中。但由於這會
5 影響效能,因此只在開發過程中將此值
6 設定為 true。
7 httpHandlers和httpModules設定是為瞭解決Sys的錯誤問題
8 -->
9 <identity impersonate="true"/>
10 <httpHandlers>
11 <remove verb="*" path="*.asmx"/>
12 <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
13 <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
14 <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"/>
15 </httpHandlers>
16 <httpModules>
17 <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
18 </httpModules>
19 <compilation debug="true">
20 <assemblies>
21 <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
22 <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
23 <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
24 </assemblies></compilation>
25 <!--
26 通過 <authentication> 節可以配置 ASP.NET 使用的
27 安全身分識別驗證模式,
28 以標識傳入的使用者。
29 -->
30 <authentication mode="Windows"/>
31 <!--
32 如果在執行請求的過程中出現未處理的錯誤,
33 則通過 <customErrors> 節可以配置相應的處理步驟。具體說來,
34 開發人員通過該節可以配置
35 要顯示的 html 錯誤頁
36 以代替錯誤堆疊追蹤。
37
38 <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
39 <error statusCode="403" redirect="NoAccess.htm" />
40 <error statusCode="404" redirect="FileNotFound.htm" />
41 </customErrors>
42 -->
43 </system.web>
網上還說注意<asp:SrciptManager> 控制項一定要緊跟在<form>後面