Hello I just publish an app that require a database with Sql Server 2008 and Visual C# 2010. It works really well on my laptop but when I try it on another laptop I got this error !
https://i.stack.imgur.com/eZGJ8.png
I use SQL Authentication method to grant user to read and write to the database but it is useless, this is my connection string
stringkoneksi = @"Server = .\SQLEXPRESS;" +
"Database = UGsimplify;" +
"Integrated Security = false;" +
"User ID = 'userdefined';" +
"Password = 'blablabla'";
do you have any step by step to make it works on another laptop?
Try this:
Configure your SQL server security as sql server and windows authentication mode.
To set up SQL Server and Widows Authentication Mode.
Make sure your laptop(Server) SQL Server instance is running.
Regards