SQL Server does not exist or access denied

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
 
W

William \(Bill\) Vaughn

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.
__________________________________
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top