سلام دوستان من بسیار تازه کار هستم در ASP.NET و همین اولش هم به کلی مشکل برخوردم ، من دارم با C# کد نویسی پروژه سایتمو انجام میدم
این کد ها رو ببینید با این کد ها به دیتابیسم وصل میشم دیتابیسم هم Sql هست و یوزر و پسورد نداره ولی وقتی برنامه رو اجرا میکنم به مشکل برمیخورم و این ارور رو دریافت میکنم
Sqlexception was unhandled by user code
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server
دوستان ممنون میشم راهنماییم کنید
کد:
string connectionString = "Data Source=(127.0.0.1);" + "Initial Catalog=Database1;" ;
SqlConnection conObj = new SqlConnection(connectionString);
conObj.Open();
string commandText = "insert into works(title,vaziat) values('ali','delshad')";
SqlCommand cmdObj = new SqlCommand(commandText, conObj);
cmdObj.ExecuteNonQuery();
conObj.Close();
این کد ها رو ببینید با این کد ها به دیتابیسم وصل میشم دیتابیسم هم Sql هست و یوزر و پسورد نداره ولی وقتی برنامه رو اجرا میکنم به مشکل برمیخورم و این ارور رو دریافت میکنم
Sqlexception was unhandled by user code
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server
دوستان ممنون میشم راهنماییم کنید