SQL Server does not exist or access denied

  • Thread starter Thread starter kamran
  • Start date Start date
K

kamran

Hi all,

I am getting the following error message in my asp.net page while connecting
to SQL server

"SQL Server does not exist or access denied"

I am using the following code

constr = "User ID=designers; Password=designers; database=DesignManagement;
server=dserv" ;
SqlConnection objconn = new SqlConnection(constr);

objconn = new SqlConnection (constr);

objconn.Open();



Any suggestions
 
What server are you connecting to (MSDE? Standard?)?
Does it support mixed-mode security?
Do you have permission to access the specified database?


--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant
MVP, hRD
www.betav.com
Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights.
__________________________________
 
Back
Top