[Solved] Connecting with 3 different databases [closed]


Yes you can do that, you have to go to your web.config file and write this.

<configuration>
<connectionStrings>
<add name="First" connectionString="..."/>
<add name="Second" connectoinString="..."/>
<add name="Third" connectionString="..."/>
</connectionStrings>
</configuration>

You have to change the name of each connection and the connectionString too.

0

solved Connecting with 3 different databases [closed]