如何清除本地IIS服务器错误?

时间:2014-07-31 07:55:46

标签: asp.net iis c#-3.0

这是我的连接字符串代码 在我的webconfig文件中获取此错误。当我连接本地数据库时。 已成功与服务器建立连接,但在登录前握手期间发生错误。 (提供者:SSL提供者,错误:0 - 证书链是由不受信任的权威机构发布的。)。任何人都知道这个错误

1 个答案:

答案 0 :(得分:0)

尝试在连接字符串中添加此行,即

TrustServerCertificate=True

所以你的连接字符串看起来像这样,

<add name="sqlcon" connectionString="Data Source=ARABSWELL\SQLEXPRESS;
 Initial Catalog=bedoonzaytdb;Integrated Security=sspi;
 Persist Security Info=True;Encrypt=True; TrustServerCertificate=True;
 MultipleActiveResultSets=True" providerName="System.Data.SqlClient"/>