公用資料集 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);
返回字串;
}