用  HttpWebRequest 或者 xmlhttp来处理

解决方案 »

  1.   

    用LoadXml(将动态生成的XML文件读出)
      

  2.   

    are you sure? the following worksusing System;
    using System.Xml;class TestLoad
    {
     public static void Main()
     {
    XmlDocument xmldoc = new XmlDocument();
    xmldoc.Load("http://www.gotdotnet.com/team/dbox/rss.aspx?version=0.91");
    xmldoc.Save(Console.Out);
     }
    }if you check the output and compare against
    http://www.gotdotnet.com/team/dbox/rss.aspxyou will know the output is different
      

  3.   

    感谢大家。在大家的提示下,我也发现xmldoc.load是可以正常加载带有参数的url。看来问题不在load方法上,而是在url上。我测试了几次,找到了原因,原来是因为我的url上有中文参数,比如: createxml.aspx?name=小明,这样的话,load就不能正常加载这个参数。至于如何,正常加载中文参数,希望大家能跟贴帮忙。前面的问题,结贴。