Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

ConnectionStrings.config

Contains the connectionstring to the database, eg:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <connectionStrings>   <add name="DVIContext" connectionString="Data Source=(local)\sqlexpress;Initial Catalog=DVI5;Integrated Security=True;MultipleActiveResultSets=True" providerName="System.Data.SqlClient"/> </connectionStrings>

where:
Data Source is the hostname (and optional instance name) of the SQL Server, and
Initial Catalog is the name of the database

Web.config

Contains all other configuration, such as logging, reference to assemblies, path locations, etc. 

 

  • No labels