當我嘗試從Sql服務器數據庫中獲取數據並將其顯示在GridView中時,我正在獲得以下內容。我的代碼如下:我們如何在asp.net中的網格視圖中顯示數據?
string connstr = @"Data Source=.\SQLEXPRESS; Initial Catalog=Aman;User ID=sa; Password=123";
DataSet ds = new DataSet();
SqlDataAdapter da;
DataTable dt = new DataTable();
SqlConnection conn = new SqlConnection(connstr);
conn.Open();
da = null;
string strsql = "Select File_ID,File_Name,File_Type from Upload_file";
da = new SqlDataAdapter(strsql, conn);
da.Fill(ds, "Upload_file");
GridView1.DataSource = ds.Tables["Upload_file"].DefaultView;
GridView1.DataBind();
這不是真的清楚你想要輸出。不要讓我們猜測。 –