Web.config
上传用户:sz0451
上传日期:2022-07-29
资源大小:256k
文件大小:2k
源码类别:

.net编程

开发平台:

Visual C++

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3.     
  4.   <system.web>
  5. <!-- DYNAMIC DEBUG COMPILATION
  6.               Set compilation debug="true" to insert debugging symbols (.pdb information)
  7.               into the compiled page. Because this creates a larger file that executes
  8.               more slowly, you should set this value to true only when debugging and to
  9.               false at all other times. For more information, refer to the documentation about
  10.               debugging ASP.NET files.
  11.      -->
  12.     <compilation 
  13.          debug="true"
  14.     />
  15.     <!--  CUSTOM ERROR MESSAGES
  16.           Set mode enable="on" or "remoteonly" to enable custom error messages, "off" to disable. Add
  17.           <error> tags for each of the errors you want to handle.
  18.     -->
  19.     <customErrors 
  20.     mode="Off" 
  21.     /> 
  22.     <!--  AUTHENTICATION 
  23.           This section sets the authentication policies of the application. Possible modes are "Windows", "Cookie", 
  24.           "Passport" and "None"
  25.     -->
  26.     <authentication mode="None" /> 
  27.     <!--  APPLICATION-LEVEL TRACE LOGGING
  28.           Application-level tracing enables trace log output for every page within an application. 
  29.           Set trace enabled="true" to enable application trace logging.  If pageOutput="true", the
  30.           trace information will be displayed at the bottom of each page.  Otherwise, you can view the 
  31.           application trace log by browsing the "trace.axd" page from your web application
  32.           root. 
  33.     -->
  34.     <trace
  35.         enabled="false"
  36.         requestLimit="10"
  37.         pageOutput="false"
  38.         traceMode="SortByTime"
  39.     />
  40.     <!--  SESSION STATE SETTINGS
  41.           By default ASP+ uses cookies to identify which requests belong to a particular session. 
  42.           If cookies are not available, a session can be tracked by adding a session identifier to the URL. 
  43.           To disable cookies, set sessionstate cookieless="true".
  44.     -->
  45.     <sessionState 
  46.             mode="InProc"
  47.             stateConnectionString="tcpip=127.0.0.1:42424"
  48.             sqlConnectionString="data source=127.0.0.1;user id=sa;password="
  49.             cookieless="false" 
  50.             timeout="20" 
  51.     />
  52.     <!--  GLOBALIZATION
  53.           This section sets the globalization settings of the application. 
  54.     -->
  55.     <globalization 
  56.             requestEncoding="utf-8" 
  57.             responseEncoding="utf-8" 
  58.    />
  59.    
  60.  </system.web>
  61. </configuration>