从结果集中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();
            }

 

posted @ 2012-12-22 10:11  杨斌_济南  阅读(338)  评论(0编辑  收藏  举报