[Solved] Connecting with 3 different databases [closed]

[ad_1]

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

[ad_2]

solved Connecting with 3 different databases [closed]