web.config
上传用户:szgaoree
上传日期:2009-01-05
资源大小:74k
文件大小:3k
源码类别:

Ajax

开发平台:

C#

  1. <?xml version="1.0"?>
  2. <configuration>
  3. <configSections>
  4. <sectionGroup name="ajaxNet">
  5. <!--
  6. If you are using Microsoft .NET 1.1 please remove the two attributes
  7. requirePermission and restartOnExternalChanges, they are only supported
  8. with .NET 2.0.
  9. -->
  10. <section name="ajaxSettings"
  11. type="AjaxPro.AjaxSettingsSectionHandler,AjaxPro"
  12. requirePermission="false"
  13. restartOnExternalChanges="true"
  14. />
  15. </sectionGroup>
  16. </configSections>
  17. <ajaxNet>
  18. <ajaxSettings>
  19. <urlNamespaceMappings useAssemblyQualifiedName="false">
  20. <!--
  21. Set the attribute useAssemblyQualifiedName to true to enable
  22. use of assemblies placed in the GAC by using the full assembly
  23. qualified name.
  24. To hide internal knowledge of assemblies, classes and namespace
  25. you can override the name of the virtual http endpoints.
  26. <add type="Namespace.Class1,Assembly" path="mypath" />
  27. -->
  28. </urlNamespaceMappings>
  29. <jsonConverters>
  30. <!--
  31. This section can be used to add new IJavaScriptConverters to the
  32. Ajax.NET Professional engine. If you want to disable built-in
  33. converters you can use the remove tag.
  34. <remove type="Namespace.Class1,Assembly"/>
  35. <add type="Namespace.Class2,Assembly"/>
  36. -->
  37. </jsonConverters>
  38. <!--
  39. Set the enabled attribute to true to get Stack, TargetSize and Source 
  40. information if an exception has been thrown.
  41. -->
  42. <debug enabled="false" />
  43. <!--
  44. This is the default configuration used with Ajax.NET Professional. You
  45. can put there your static JavaScript files, or remove the path attribute
  46. to completly disable the files.
  47. <scriptReplacements>
  48. <file name="core" path="~/ajaxpro/core.ashx" />
  49. <file name="prototype" path="~/ajaxpro/prototype.ashx" />
  50. <file name="converter" path="~/ajaxpro/converter.ashx" />
  51. </scriptReplacements>
  52. -->
  53. <!-- <encryption cryptType="" keyType="" /> -->
  54. <!--
  55. Set the enabled attribute to true to enable the use of an Ajax.NET Professional
  56. token. This will send a token to the client that will be used to identify if the
  57. requests comes from the same PC.
  58. -->
  59. <token enabled="false" sitePassword="password" />
  60. <!--
  61. The oldStyle section can be used to enable old styled JavaScript code or
  62. functions that are not used any more.
  63. <oldStyle>
  64. <objectExtendPrototype/>
  65. </oldStyle>
  66. -->
  67. </ajaxSettings>
  68. </ajaxNet>
  69. <location path="ajaxpro">
  70. <system.web>
  71. <httpHandlers>
  72. <add verb="*" path="*.ashx" type="AjaxPro.AjaxHandlerFactory,AjaxPro"/>
  73. </httpHandlers>
  74. <!--
  75. If you need to have Ajax.NET Professional methods running on the
  76. login page you may have to enable your own authorization configuration
  77. here.
  78. -->
  79. <!--
  80. <authorization>
  81. <allow users="*,?"/>
  82. </authorization>
  83. -->
  84. </system.web>
  85. </location>
  86. </configuration>