Advertisement
Guest User

Web.Config

a guest
Mar 31st, 2014
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.85 KB | None | 0 0
  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.  For more information on how to configure your ASP.NET application, please visit
  5.  http://go.microsoft.com/fwlink/?LinkId=169433
  6.  -->
  7.  
  8. <configuration>
  9.  
  10.     <system.web>
  11.       <compilation debug="true" targetFramework="4.5" />
  12.       <httpRuntime targetFramework="4.5" />
  13.     </system.web>
  14.  
  15.     <appSettings>
  16.       <add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
  17.     </appSettings>
  18.  
  19.   <connectionStrings>
  20.     <add name="MinConn" connectionString="Data Source=localhost; Initial Catalog=Tomasos; Integrated Security=SSPI;"
  21.      providerName="System.Data.SqlClient" />
  22.     <add name="TomasosConnectionString" connectionString="Data Source=localhost;Initial Catalog=Tomasos;Integrated Security=True"
  23.      providerName="System.Data.SqlClient" />
  24.   </connectionStrings>
  25.    
  26.  
  27. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement