1
夥計們我想打印從數據庫返回到標籤的兩條記錄。我使用數據集,瀏覽整個列,但無法綁定,因爲標籤沒有數據源。以下是我的代碼。將數據集或數據表中的記錄綁定到標籤
SqlDataAdapter adp = new SqlDataAdapter();
adp.SelectCommand = cmd;
DataSet ds = new DataSet();
adp.Fill(ds);
if (ds.Tables[0].Rows.Count > 0)
{
lblClient.Enabled = true;
lblClient.Text = Convert.ToString(ds.Tables[0].Columns[0]);
lblBranch.Text = Convert.ToString(ds.Tables[0].Columns["Bname"]);
}
connection.Close();
當我嘗試上述。它僅返回列名稱(即指定的字符串)。任何替代將不勝感激。