DB connection problems, ASP.NET Web Application

alexb789

New member
Joined
May 15, 2003
Messages
1
-Problems with DB connection:

**Code:
objConnection = New SqlConnection("server=(local); database=pubs; Integrated Security=SSPI")

**I have SQL Server 7.0 installed with the option
 
You need to give permission to the oemcomputer/aspnet to access your database. Do you have access to SQL Enterprise Manager? Navigate to Console Root\Microsoft SQL Servers\SQL Server Group\Oemcomputer\NetSDK(Windows NT)\Security\Logins
and add oemcomputer\aspnet or check its properties and grant it permission to access the database.

Jon
 
Back
Top