ASP.NET如何读取页面返回的XML信息啊
发布网友
发布时间:2022-04-27 16:11
我来回答
共3个回答
热心网友
时间:2022-04-27 17:40
有点不太明白楼主的意图, 是要用asp.net 去请求另外一个页面吗?
如果是,
HttpWebRequest HttpWReq =
(HttpWebRequest)WebRequest.Create("你要读取页面的url");
HttpWebResponse HttpWResp = (HttpWebResponse)HttpWReq.GetResponse();
StreamReader sw = new StreamReader(HttpWResp.GetResponseStream());
string xmlContent = sw.ReadToEnd(); //这里就是你要的xml
sw.Close();
补充xml的读取代码:
XmlDocument doc = new XmlDocument();
doc.Load(new StreamReader("../../XMLFile1.xml", Encoding.GetEncoding("GB2312")));
Console.WriteLine(doc.SelectSingleNode("/fill/items/item[@name=\"resultno\"]").Attributes["value"].Value);
热心网友
时间:2022-04-27 18:58
http://developer.51cto.com/art/200908/144652.htm
麻烦自己去看看
热心网友
时间:2022-04-27 20:33
用读xml的方式来读