1:   <?xml version="1.0" encoding="utf-8" ?>
2:   <configuration>
3:       
4:     <system.web>
5:       <httpHandlers>
6:           <add 
7:           verb="*"
8:           path="BarcodeHandler.aspx"
9:           type="WebFeaturesDemoCS.ImageHandler,WebFeaturesDemoCS" />
10:       </httpHandlers>
11:       <!--  DYNAMIC DEBUG COMPILATION
12:             Set compilation debug="true" to enable ASPX debugging.  Otherwise, setting this value to
13:             false will improve runtime performance of this application. 
14:             Set compilation debug="true" to insert debugging symbols (.pdb information)
15:             into the compiled page. Because this creates a larger file that executes
16:             more slowly, you should set this value to true only when debugging and to
17:             false at all other times. For more information, refer to the documentation about
18:             debugging ASP.NET files.
19:       -->
20:       <compilation 
21:            defaultLanguage="c#"
22:            debug="true"
23:       />
24:  
25:       <!--  CUSTOM ERROR MESSAGES
26:             Set customErrors mode="On" or "RemoteOnly" to enable custom error messages, "Off" to disable. 
27:             Add <error> tags for each of the errors you want to handle.
28:  
29:             "On" Always display custom (friendly) messages.
30:             "Off" Always display detailed ASP.NET error information.
31:             "RemoteOnly" Display custom (friendly) messages only to users not running 
32:              on the local Web server. This setting is recommended for security purposes, so 
33:              that you do not display application detail information to remote clients.
34:       -->
35:       <customErrors 
36:       mode="RemoteOnly" 
37:       /> 
38:  
39:       <!--  AUTHENTICATION 
40:             This section sets the authentication policies of the application. Possible modes are "Windows", 
41:             "Forms", "Passport" and "None"
42:  
43:             "None" No authentication is performed. 
44:             "Windows" IIS performs authentication (Basic, Digest, or Integrated Windows) according to 
45:              its settings for the application. Anonymous access must be disabled in IIS. 
46:             "Forms" You provide a custom form (Web page) for users to enter their credentials, and then 
47:              you authenticate them in your application. A user credential token is stored in a cookie.
48:             "Passport" Authentication is performed via a centralized authentication service provided
49:              by Microsoft that offers a single logon and core profile services for member sites.
50:       -->
51:       <authentication mode="Windows" /> 
52:  
53:       <!--  AUTHORIZATION 
54:             This section sets the authorization policies of the application. You can allow or deny access
55:             to application resources by user or role. Wildcards: "*" mean everyone, "?" means anonymous 
56:             (unauthenticated) users.
57:       -->
58:  
59:       <authorization>
60:           <allow users="*" /> <!-- Allow all users -->
61:               <!--  <allow     users="[comma separated list of users]"
62:                                roles="[comma separated list of roles]"/>
63:                     <deny      users="[comma separated list of users]"
64:                                roles="[comma separated list of roles]"/>
65:               -->
66:       </authorization>
67:  
68:       <!--  APPLICATION-LEVEL TRACE LOGGING
69:             Application-level tracing enables trace log output for every page within an application. 
70:             Set trace enabled="true" to enable application trace logging.  If pageOutput="true", the
71:             trace information will be displayed at the bottom of each page.  Otherwise, you can view the 
72:             application trace log by browsing the "trace.axd" page from your web application
73:             root. 
74:       -->
75:       <trace
76:           enabled="false"
77:           requestLimit="10"
78:           pageOutput="false"
79:           traceMode="SortByTime"
80:           localOnly="true"
81:       />
82:  
83:       <!--  SESSION STATE SETTINGS
84:             By default ASP.NET uses cookies to identify which requests belong to a particular session. 
85:             If cookies are not available, a session can be tracked by adding a session identifier to the URL. 
86:             To disable cookies, set sessionState cookieless="true".
87:       -->
88:       <sessionState 
89:               mode="InProc"
90:               stateConnectionString="tcpip=127.0.0.1:42424"
91:               sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
92:               cookieless="false" 
93:               timeout="20" 
94:       />
95:  
96:       <!--  GLOBALIZATION
97:             This section sets the globalization settings of the application. 
98:       -->
99:       <globalization 
100:               requestEncoding="utf-8" 
101:               responseEncoding="utf-8" 
102:      />
103:      
104:    </system.web>
105:  
106:   </configuration>

This page was automatically generated by SharpDevelop.