In web.config we store connection string like:
connectionString="Server=serverName;Database=dbName;Username=xyz;Password=xyz"
But everytime, server name keeps on changing...i mean many times Database is shifted from one server to another. So all the time we need to change connection string in all apllications
Is is possible to store server name in machine.config file and other part of connection string i.e. Database name, username, password in web.config file?
If possible How?... Can we add something like "key"?