Advertisement
Guest User

Pastebin to the Rescue

a guest
Feb 9th, 2011
524
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.66 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <!--
  3.  For more information on how to configure your ASP.NET application, please visit
  4.  http://go.microsoft.com/fwlink/?LinkId=152368
  5.  -->
  6.  
  7. <configuration>
  8.  
  9.   <appSettings>
  10.     <add key="ClientValidationEnabled" value="true"/>
  11.     <add key="UnobtrusiveJavaScriptEnabled" value="false"/>
  12.   </appSettings>
  13.  
  14.   <connectionStrings>
  15.     <!-- I commented this out for obvious reasons -->
  16.   </connectionStrings>
  17.    
  18.   <system.web>
  19.     <compilation debug="true" targetFramework="4.0">
  20.       <assemblies>
  21.         <add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  22.         <add assembly="System.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  23.         <add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  24.         <add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  25.         <add assembly="System.Web.WebPages, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  26.         <add assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
  27.         <add assembly="Microsoft.ReportViewer.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
  28.       </assemblies>
  29.     </compilation>
  30.  
  31.     <authentication mode="Forms">
  32.       <forms loginUrl="~/Login/Index" timeout="2880" />
  33.     </authentication>
  34.  
  35.     <pages>
  36.       <namespaces>
  37.         <add namespace="System.Web.Helpers" />
  38.         <add namespace="System.Web.Mvc" />
  39.         <add namespace="System.Web.Mvc.Ajax" />
  40.         <add namespace="System.Web.Mvc.Html" />
  41.         <add namespace="System.Web.Routing" />
  42.         <add namespace="System.Web.WebPages"/>
  43.       </namespaces>
  44.     </pages>
  45.  
  46.     <httpHandlers>
  47.       <add verb="*" path="Reserved.ReportViewerWebControl.axd" type = "Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
  48.     </httpHandlers>
  49.  
  50.     <customErrors mode="Off" />
  51.  
  52.   </system.web>
  53.  
  54.   <system.webServer>
  55.     <validation validateIntegratedModeConfiguration="false"/>
  56.     <modules runAllManagedModulesForAllRequests="true"/>
  57.   </system.webServer>
  58.  
  59.   <runtime>
  60.     <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  61.       <dependentAssembly>
  62.         <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  63.         <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="3.0.0.0" />
  64.       </dependentAssembly>
  65.     </assemblyBinding>
  66.   </runtime>
  67.  
  68. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement