re:
!> There is no sql server install on the Web Server.
That's your problem.
You need, at least SQL Server 2000 or 2005 installed on the server,
whether the Express version or the full SQL Server 2005.
You can also use other databases, like Access.
There's a sample Access Provider at :
http://download.microsoft.com/downlo...sproviders.vsi
More info on the Provider model is at :
http://msdn2.microsoft.com/en-us/asp.net/aa336558.aspx
Juan T. Llibre, asp.net MVP
asp.net faq :
http://asp.net.do/faq/
foros de asp.net, en espaņol :
http://asp.net.do/foros/
======================================
"jobs" <> wrote in message
news: ups.com...
> Works great on my client when I test from vs.net 2005.
>
> Howevever, when I deploy to the web server, I get this error: remotely
> and local from the web server.
>
> An error has occurred while establishing a connection to the server.
> When connecting to SQL Server 2005, this failure may be caused by the
> fact that under the default settings SQL Server does not allow remote
> connections. (provider: SQL Network Interfaces, error: 26 - Error
> Locating Server/Instance Specified)
>
> My web config contains this:
>
> <connectionStrings>
>
> <remove name="LocalSqlServer"/>
>
> <add name="LocalSqlServer" connectionString="Data Source=.
> \SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|
> aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient" /
>>
>
> </connectionStrings>
>
> There is no sql server install on the Web Server. I used vs.net 2005
> to create the site on my client.
>
>
> Thanks for any help or information.
>