http://community.csdn.net/Expert/topic/3393/3393613.xml?temp=.5455744
IE 可以正常顯示, 但是 firefox 確說有錯誤 
IE的錯?FireFox的錯? 還是W3C的錯?

解决方案 »

  1.   

    好象是非IE浏览器对XML支持不好。
      

  2.   

    IE包含的东西太多,象xml/VBscript/ActiveX等等,许多浏览器都不支持,没办法的事
      

  3.   

    没有办法了,firefox和ie的内核不同
      

  4.   

    http://community.csdn.net/Expert/TopicView3.asp?id=3447408**************************************************************
    csdn的論壇 xml 不 能被firefox 顯示, 原來是 產生的xml文件是不標准的 !private String Transform()
    {
    System.Xml.Xsl.XslTransform RssXslt = new System.Xml.Xsl.XslTransform();
    System.Xml.XmlDocument RssXml = new System.Xml.XmlDocument();
    RssXslt.Load(@FxslFile);
    RssXml.Load(@FxmlFile);
    System.IO.MemoryStream t = new System.IO.MemoryStream();
    RssXslt.Transform(RssXml,null,t,null);
    string resultString = System.Text.UTF8Encoding.UTF8.GetString(t.ToArray());
    return resultString;
    }
    ---------------------------------
    我用上面的文件轉換 http://community.csdn.net/Expert/topic/3447/3447213.xml?temp=.9812128
    結果出現了System.Xml.Xsl.XsltCompileException 異常,
    但是很奇怪: IE能正常顯示呀 .我想請問各位, 這是什麼原因?