-1
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("data source=.; database=Sample; integrated security=SSPI");
SqlCommand cmd = new SqlCommand("Select * from Table_1", con);
con.Open();
SqlDataReader rdr = cmd.ExecuteReader();
GridView1.DataSource = rdr;
GridView1.DataBind();
con.Close();
}
}
每當我運行VS-15這個代碼是沒有處理,我收到以下異常:System.Data.SqlClient.SqlException出現在system.data.dll但在用戶代碼
請檢查您的數據庫連接字符串 – Prisoner
似乎是您的連接字符串的問題。輸入正確的數據源並檢查是否允許您使用集成安全模式打開它,如果沒有,請輸入憑據。 –
先生我的數據庫字符串連接是有效的。 – itsmeBakar