从结果集中Table里取值
DataSet ds = Newtonsoft.Json.JsonConvert.DeserializeObject<DataSet>(strResult); if (ds.Tables[0].Rows.Count > 0) { txtProvinceID.Text = ds.Tables[0].Rows[0]["PRO_ID"].ToString(); txtProvinceName.Text = ds.Tables[0].Rows[0]["PRO_NAME"].ToString(); }