ASP.NET连接字符串错误帮助需要

时间:2015-03-11 18:03:23

标签: asp.net

我是asp.net的新手。这是我的问题。请帮忙。

我正在尝试连接到我的数据库,该数据库也在本地计算机上作为我的asp.net项目。我使用以下连接字符串

SqlConnection con = new SqlConnection("Data Source= NGEST1AND2\SQLEXPRESS;Integrated Security=True;Connect Timeout=15;Encrypt=False;TrustServerCertificate=False");

我在SQLEXPRESS(无法识别的转义序列)下遇到错误。我尝试使用\\纠正此错误,然后错误消失,但我收到另一个错误,指出无法连接到数据库。

我将非常感谢你的帮助。

由于 杰拉德

2 个答案:

答案 0 :(得分:0)

SqlConnection con = new SqlConnection(@"Data Source= NGEST1AND2\SQLEXPRESS;Integrated Security=True;Connect Timeout=15;Encrypt=False;TrustServerCertificate=False");

将@放在开头

答案 1 :(得分:0)

试试这个

SqlConnection con = new SqlConnection(@"Data Source= NGEST1AND2\SQLEXPRESS;Integrated Security=True;Connect Timeout=15;Encrypt=False;TrustServerCertificate=False");

@放在连接字符串之前。