sql server connect:
First, may I say that I truly appreciate the time people spend on
these forums to help others out; it's a wonderful community.
Second, I'm afraid that my problem has been answered many times in the
plethora of material I've researched and referenced trying to solve my
particular problem. However, I've tried so many different suggestions
and made so many adjustments that now I'm thoroughly confused with the
details.
I have a domain which consists of a Windows 2000 Pro OS machine and a
Windows Server 2003 OS machine upon which resides a SQL Server 2000
instance. On the W2KPro machine I have Visual Studio .NET 2003,
within which I've created an ASP.NET webapp (call it WEBAPP) to
communicate with a database on the SQL Server (call it DB). WEBAPP
has been tested on other platforms and works fine. From VS.NET, I can
read everything on DB through the connection functionality provided by
Server Explorer. However, when I run WEBAPP, which has code to
communicate with DB, I continually get error messages, ranging from
'SQL Server does not exist, or access denied' to 'login failed for
user 'xxxxx'. Reason: Not associated with a trusted SQL Server
connection'.
The variations in error messages occur as a result of trying all the
different logins, connections, permissions, etc. that I've used
following each attempt to establish the connection. The following
connection string is typical, in VB:
"Data Source=<SERVERNAME>,1433;" & _
"Initial Catalog=DB;" & _
"User ID=frefacad; Password=aspnettest;"
Is there a connect the dots process which I could follow to clear up
the confusion and finally establish the connection? Please don't
tell me to see anything that has been posted so far. I'm fairly
certain I've searched everything, but can't identify a situation that
pertains to me precisely.