Hi,
If you are running SQL Server or MSDE on the same machine as your ASP pages,
you are probably tempted to use the hostname "localhost." This doesn't always
work, due to different configuration issues, so try (local), 127.0.0.1, the
actual host name, or simply a period (".").
ref:
http://databases.aspfaq.com/database...look-like.html
--
Hope this helps.
Thanks and Regards.
Manish Bafna.
MCP and MCTS.
"NH" wrote:
> Hi,
>
> I have an asp.net 2.0 website and a sql database on the same server. In the
> web config file I have set up a connection to the database using this
> connection string....
>
> connectionString="Data Source=myServer;Initial Catalog=MyDatabase;Persist
> Security Info=True;User ID=LoginUser;Password=LoginPassword"
> providerName="System.Data.SqlClient" />
>
> Should the server be referenced using "localhost" or something? Would that
> be more efficient? If I use the server name does that incur a network
> overhead as asp.net uses the network to find the server without knowing it
> doesnt actually have to because the database is on the same server as the
> website.
>
> I suppose the question is what it the best way to set up a connection string
> to reference a database on the same server as asp.net.
>
> thanks