Accessing a Shared Database with Web Site Admin Tool 


How to access a shared database using Visual Studio's Web Site Administration Tool.

If you currently use Visual Studio's Web Site Administration Tool while trying to connect to a database hosted on an external server, you may receive the following error:

Login failed for user ''. The user is not associated with a trusted SQL Server connection.

This is due to a default connection string within Web Site Administration Tool's web.config file. You can modify this default connection string to connect to your shared database by following the steps in this article.

First, browse to the web.config file with in the Web Site Administration Tool's installation folder and open it using your favorite text editor (such as Notepad).

Then locate the connection string in the web.config file and replace it with your database's connection string. For example, the block of code containing the connection string should resemble the following:

<configuration>
   <connectionStrings>
      <add name="MyConnectionString" connectionString="Data Source=(IPADDRESS,PORT);User ID=USERNAME;Password=PASSWORD;Initial Catalog=DATABASENAME" providerName="System.Data.SqlClient"/>
   </connectionStrings>
</configuration>

This should resolve the error listed above. If you continue to experience any problems, please feel free to submit a ticket to our technical support department:

http://www.serverintellect.com/contact/

Help us Improve