~jbrejner/troja/jbrinit

« back to all changes in this revision

Viewing changes to WebControls/Web.config

  • Committer: jor
  • Date: 2009-05-28 09:02:17 UTC
  • Revision ID: svn-v4:93163c94-53e2-4789-836c-c47e9053d533:dock/Troja:13
Novo test installation 20090527 (VS2005)
no fogbugz

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
 
 
3
<configuration>
 
4
  
 
5
    <appSettings/>
 
6
    <connectionStrings/>
 
7
  
 
8
    <system.web>
 
9
        <!-- 
 
10
            Set compilation debug="true" to insert debugging 
 
11
            symbols into the compiled page. Because this 
 
12
            affects performance, set this value to true only 
 
13
            during development.
 
14
        -->
 
15
        <compilation debug="true" />
 
16
        <!--
 
17
            The <authentication> section enables configuration 
 
18
            of the security authentication mode used by 
 
19
            ASP.NET to identify an incoming user. 
 
20
        -->
 
21
        <authentication mode="Windows" />
 
22
        <!--
 
23
            The <customErrors> section enables configuration 
 
24
            of what to do if/when an unhandled error occurs 
 
25
            during the execution of a request. Specifically, 
 
26
            it enables developers to configure html error pages 
 
27
            to be displayed in place of a error stack trace.
 
28
 
 
29
        <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
 
30
            <error statusCode="403" redirect="NoAccess.htm" />
 
31
            <error statusCode="404" redirect="FileNotFound.htm" />
 
32
        </customErrors>
 
33
        -->
 
34
    </system.web>
 
35
</configuration>