I've created a website in visual studio 2005 that access a database and allows users to view, add, change, and delete data. I've hosted the site on godaddy - I realized that i had to import my database tables into the database i created on godaddy - now i need to change my connection string to access the database on godaddy. I changed the connection string in my web.config file to point to what i believe is the correct server name and database but I keep getting various errors with the different variations of the connection string I'm using: currently the connection string looks like this
and I'm getting the following error
Login failed for user 'PHX3\Iusr_62355448'.
Can anyone tell me if the problem is in the connection string or is something else going wrong and how do I fix it? This is my first dynamic website.
Thanks
Code:
<add name="ConnectionString" connectionString="Data Source=database.db.62355448.hostedresource.com; Initial Catalog=table;Integrated Security=True;User Instance=True"
providerName="System.Data.SqlClient" />
and I'm getting the following error
Login failed for user 'PHX3\Iusr_62355448'.
Can anyone tell me if the problem is in the connection string or is something else going wrong and how do I fix it? This is my first dynamic website.
Thanks