/Reports/Web.config
Unknown | 73 lines | 62 code | 11 blank | 0 comment | 0 complexity | f47be7ac6aa8f742f9ba142002c8860e MD5 | raw file
1<?xml version="1.0" encoding="utf-8"?> 2 3<configuration> 4<configSections> 5 <sectionGroup name="businessObjects"> 6 <sectionGroup name="crystalReports"> 7 <section name="printControl" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.5000.0,Culture=neutral, PublicKeyToken=b77a5c561934e089" /> 8 </sectionGroup> 9 </sectionGroup> 10</configSections> 11 <businessObjects> 12 <crystalReports> 13 <printControl> 14 <add key="url" value="http://127.0.0.1/PrintControl.cab" /> 15 </printControl> 16 </crystalReports> 17 </businessObjects> 18 19 <system.web> 20 21 <!-- DYNAMIC DEBUG COMPILATION 22 Set compilation debug="true" to enable ASPX debugging. Otherwise, setting this value to 23 false will improve runtime performance of this application. 24 Set compilation debug="true" to insert debugging symbols (.pdb information) 25 into the compiled page. Because this creates a larger file that executes 26 more slowly, you should set this value to true only when debugging and to 27 false at all other times. For more information, refer to the documentation about 28 debugging ASP .NET files. 29 --> 30 <compilation defaultLanguage="c#" debug="true"><assemblies><add assembly="CrystalDecisions.CrystalReports.Engine, Version=9.2.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.ReportSource, Version=9.2.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.Shared, Version=9.2.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.Web, Version=9.2.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=9.2.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/></assemblies></compilation> 31 32 <!-- CUSTOM ERROR MESSAGES 33 Set customError mode values to control the display of user-friendly 34 error messages to users instead of error details (including a stack trace): 35 36 "On" Always display custom (friendly) messages 37 "Off" Always display detailed ASP.NET error information. 38 "RemoteOnly" Display custom (friendly) messages only to users not running 39 on the local Web server. This setting is recommended for security purposes, so 40 that you do not display application detail information to remote clients. 41 --> 42 <customErrors mode="Off"/> 43 44 <!-- AUTHENTICATION 45 This section sets the authentication policies of the application. Possible modes are "Windows", "Forms", 46 "Passport" and "None" 47 --> 48 <authentication mode="None"/> 49 50 <!-- APPLICATION-LEVEL TRACE LOGGING 51 Application-level tracing enables trace log output for every page within an application. 52 Set trace enabled="true" to enable application trace logging. If pageOutput="true", the 53 trace information will be displayed at the bottom of each page. Otherwise, you can view the 54 application trace log by browsing the "trace.axd" page from your web application 55 root. 56 --> 57 <trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true"/> 58 59 <!-- SESSION STATE SETTINGS 60 By default ASP .NET uses cookies to identify which requests belong to a particular session. 61 If cookies are not available, a session can be tracked by adding a session identifier to the URL. 62 To disable cookies, set sessionState cookieless="true". 63 --> 64 <sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;user id=sa;password=" cookieless="false" timeout="20"/> 65 66 <!-- GLOBALIZATION 67 This section sets the globalization settings of the application. 68 --> 69 <globalization requestEncoding="utf-8" responseEncoding="utf-8"/> 70 71 </system.web> 72 73</configuration>