This is because the keys are case sensitive and you have all lowercase connectionstrings , just change the connectionstrings to the correct case (note the uppercase S ).
The full configuration (with deleted items removed) now looks like this:
<?xml version="1.0" encoding="UTF-8"?> <configuration> <connectionStrings> <add name="conexionsql" connectionstring="Data Source=FCH-DESARROLLO;Initial Catalog=DesaInterno;Integrated Security=True;User ID=usuario_de_conexion;Password=a" providerName="System.Data.SqlClient"/> </connectionStrings> <system.web> <compilation debug="true" targetFramework="4.5"> <assemblies> <add assembly="*" /> </assemblies> </compilation> <authorization> <deny users="?" /> </authorization> </system.web> </configuration>
source share