如果只是两个字段,这段代码添加没有问题。至于取最后一条记录的值,可以使用int total = ds.Tables[0].Rows.Count;tb1.Text = ds.Tables[0].Rows[total-1]["col1"].ToString();tb2.Text = ds.Tables[0].Rows[total-1]["col2"].ToString();