I have two conn strings in my web.config The second of them connects to external database - the database is on different server than the current website.
- Is it possible?
- How do I write my connection string?
I have this now:
<add name="newConn" connectionString="server=www.somedomain.com;database=dbname;user id=dbuser;password=dbpass" providerName="MySql.Data.MySqlClient" />
But I'm getting error saying:
Access denied for user 'dbuser'@'currentdnsserver.com' (using password: YES)
Thanks