我需要一些幫助,因爲我一直在嘗試不同的事情,但似乎沒有任何工作正常問題本身就是下面的問題。ASP.NET本地SQL Server數據庫C#gridview數據綁定Visual Studio 2013
如何使用C#背後的代碼將數據綁定到Visual Studio 2013中的網格視圖與本地SQL Server數據庫?
這裏是C#我想:
protected void Page_Load(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(@"Data Source=(LocalDB)\v11.0;AttachDbFilename=C:\Users\Guillermo\Desktop\HorsensHospital\App_Data\HospitalDB.mdf;Integrated Security=True;Connect Timeout=30");
con.Open();
SqlCommand cmd = new SqlCommand("SELECT [Task_temp_name], [Task_templatesID] FROM [Task_templates]", con);
SqlDataAdapter sda = new SqlDataAdapter(cmd);
DataSet ds = new DataSet();
GridView1.DataSource = ds;
GridView1.DataBind();
cmd.ExecuteNonQuery();
con.Close();
}
你得到任何錯誤 – 2014-11-08 12:46:34