获取DataSet中某行某列的数据

LabelText = DataSet11.Tables("COMM.USERS").Rows[0]["User_Name"].tostring()

LabelText = DataSet11.Tables("COMM.USERS").Rows(0).Item("user_name")

Label.Text=ds.Tables(0).Rows(i).Item( "列名 ")

Label.Text=ds.tables[0].rows[0][ "filed "]

Label.Text=ds.Tables[0].Rows[x][y]

原文地址:https://www.cnblogs.com/jijm123/p/10613444.html