温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:AjaxPro.NET实现的简单高效的Tree
当前文件:
AjaxProNetTree/Web.Config[1K,2009-6-12 11:31:37],打开代码结构图
AjaxProNetTree/Web.Config[1K,2009-6-12 11:31:37],打开代码结构图1<?xml version="1.0"?> 2
<!-- 3
Note: As an alternative to hand editing this file you can use the 4
web admin tool to configure settings for your application. Use 5
the Website->Asp.Net Configuration option in Visual Studio. 6
A full list of settings and comments can be found in 7
machine.config.comments usually located in 8
\Windows\Microsoft.Net\Framework\v2.x\Config 9
--> 10
<configuration> 11
<appSettings/> 12
<connectionStrings/> 13
<system.web> 14
<httpHandlers> 15
<add verb="POST,GET" path="ajaxpro/*.ashx" type="AjaxPro.AjaxHandlerFactory, AjaxPro" /> 16
</httpHandlers> 17
<!-- 18
Set compilation debug="true" to insert debugging 19
symbols into the compiled page. Because this 20
affects performance, set this value to true only 21
during development. 22
--> 23
<compilation debug="true"/> 24
<!-- 25
The <authentication> section enables configuration 26
of the security authentication mode used by 27
ASP.NET to identify an incoming user. 28
--> 29
<authentication mode="Windows"/> 30
<!-- 31
The <customErrors> section enables configuration 32
of what to do if/when an unhandled error occurs 33
during the execution of a request. Specifically, 34
it enables developers to configure html error pages 35
to be displayed in place of a error stack trace. 36
37
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm"> 38
<error statusCode="403" redirect="NoAccess.htm" /> 39
<error statusCode="404" redirect="FileNotFound.htm" /> 40
</customErrors> 41
--> 42
</system.web> 43
</configuration> 44



