公共数据集 GetData(字符串 httpUrl)
{
string xmlPath = @"http地址"; // 该地址不能包含中文
数据集 ds = new 数据集();
WebClient wc = new WebClient();
byte[] bt = wc.DownloadData(xmlPath);
XmlDocument xd = new XmlDocument();
字符串源 = Byte2String(bt);
xd.LoadXml(源);
XmlNodeReader xnr = new XmlNodeReader(xd);
ds.ReadXml(xnr);
数据表 dt = ds.Tables[0];
this.DataGrid1.DataSource = ds;
this.DataGrid1.DataBind();
返回ds;
}
公共静态字符串 Byte2String(byte[] bt)
{
System.Text.Encoding 编码 = System.Text.Encoding.GetEncoding("gb2312");
字符串 str = 编码.GetString(bt);
返回字符串;
}