2016-06-28 41 views
1

我是asp.net新手。我正在嘗試數據庫連接。但我得到這個錯誤。請指教我。 enter image description hereasp.net上的System.Data.SqlClient.SqlException錯誤

using System; 
using System.Collections.Generic; 
using System.Data.SqlClient; 
using System.Linq; 
using System.Web; 
using System.Web.UI; 
using System.Web.UI.WebControls; 

namespace WebApplication1 
{ 
    public partial class WebForm1 : System.Web.UI.Page 
    { 
     protected void Page_Load(object sender, EventArgs e) 
     { 
      string cs = "Data Source=.;Initial Catalog=test;Integrated Security=SSPI"; 
      SqlConnection con = new SqlConnection(cs); 
      SqlCommand comma = new SqlCommand("select * from try", con); 
      con.Open(); 
      GridView1.DataSource = comma.ExecuteReader(); 
      GridView1.DataBind(); 
      con.Close(); 

     } 
    } 
} 
+0

你的連接字符串是錯誤的 - 要麼是服務器('.')不存在,或者它沒有啓動呢,還是別的什麼錯呢 –

+0

@marc_s你是對的。 –

回答

1

問題出在您所使用的連接字符串。

Data Source=.;Initial Catalog=test;Integrated Security=SSPI 

檢查在本地運行的SQL Server實例名稱。 ( - >連接到服務器 - VS2015工具)

Data Source=**.\YourInstanceName**;Initial Catalog=test;Integrated Security=SSPI 

您可以嘗試添加服務器資源管理器的連接測試您的連接字符串的有效性。

好運

+0

謝謝。解決了。 :) –

相關問題