您目前尚未登陆,请选择【登陆】或【注册
首页->控件插件->asp.net漂亮弹出对话框控件源码及示例>>Web.config>>源码在线查看
温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:asp.net漂亮弹出对话框控件源码及示例
当前文件:文件类型 U3PILEHVJGM55/Web.config打开代码结构图
普通视图
		            
1<?xml version="1.0" encoding="utf-8" ?> 2<configuration> 3 4 <system.web> 5 6 <!-- DYNAMIC DEBUG COMPILATION 7 Set compilation debug="true" to enable ASPX debugging. Otherwise, setting this value to 8 false will improve runtime performance of this application. 9 Set compilation debug="true" to insert debugging symbols (.pdb information) 10 into the compiled page. Because this creates a larger file that executes 11 more slowly, you should set this value to true only when debugging and to 12 false at all other times. For more information, refer to the documentation about 13 debugging ASP.NET files. 14 --> 15 <compilation 16 defaultLanguage="c#" 17 debug="true" 18 /> 19 20 <!-- CUSTOM ERROR MESSAGES 21 Set customErrors mode="On" or "RemoteOnly" to enable custom error messages, "Off" to disable. 22 Add <error> tags for each of the errors you want to handle. 23 24 "On" Always display custom (friendly) messages. 25 "Off" Always display detailed ASP.NET error information. 26 "RemoteOnly" Display custom (friendly) messages only to users not running 27 on the local Web server. This setting is recommended for security purposes, so 28 that you do not display application detail information to remote clients. 29 --> 30 <customErrors 31 mode="RemoteOnly" 32 /> 33 34 <!-- AUTHENTICATION 35 This section sets the authentication policies of the application. Possible modes are "Windows", 36 "Forms", "Passport" and "None" 37 38 "None" No authentication is performed. 39 "Windows" IIS performs authentication (Basic, Digest, or Integrated Windows) according to 40 its settings for the application. Anonymous access must be disabled in IIS. 41 "Forms" You provide a custom form (Web page) for users to enter their credentials, and then 42 you authenticate them in your application. A user credential token is stored in a cookie. 43 "Passport" Authentication is performed via a centralized authentication service provided 44 by Microsoft that offers a single logon and core profile services for member sites. 45 --> 46 <authentication mode="Windows" /> 47 48 <!-- AUTHORIZATION 49 This section sets the authorization policies of the application. You can allow or deny access 50 to application resources by user or role. Wildcards: "*" mean everyone, "?" means anonymous 51 (unauthenticated) users. 52 --> 53 54 <authorization> 55 <allow users="*" /> <!-- Allow all users --> 56 <!-- <allow users="[comma separated list of users]" 57 roles="[comma separated list of roles]"/> 58 <deny users="[comma separated list of users]" 59 roles="[comma separated list of roles]"/> 60 --> 61 </authorization> 62 63 <!-- APPLICATION-LEVEL TRACE LOGGING 64 Application-level tracing enables trace log output for every page within an application. 65 Set trace enabled="true" to enable application trace logging. If pageOutput="true", the 66 trace information will be displayed at the bottom of each page. Otherwise, you can view the 67 application trace log by browsing the "trace.axd" page from your web application 68 root. 69 --> 70 <trace 71 enabled="false" 72 requestLimit="10" 73 pageOutput="false" 74 traceMode="SortByTime" 75 localOnly="true" 76 /> 77 78 <!-- SESSION STATE SETTINGS 79 By default ASP.NET uses cookies to identify which requests belong to a particular session. 80 If cookies are not available, a session can be tracked by adding a session identifier to the URL. 81 To disable cookies, set sessionState cookieless="true". 82 --> 83 <sessionState 84 mode="InProc" 85 stateConnectionString="tcpip=127.0.0.1:42424" 86 sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes" 87 cookieless="false" 88 timeout="20" 89 /> 90 91 <!-- GLOBALIZATION 92 This section sets the globalization settings of the application. 93 --> 94 <globalization 95 requestEncoding="utf-8" 96 responseEncoding="utf-8" 97 /> 98 99 </system.web> 100 101</configuration> 102
还没有找到您心仪的内容?请用.net源码大搜捕
代码片断 打包下载该项目完整源码:asp.net漂亮弹出对话框控件源码及示例
51Aspx.com 版权所有 CopyRight © 2000-2008. 京ICP备06046876号