RT
马上结贴。

解决方案 »

  1.   

    string strXML = "<?xml version="1.0"?><books>.....<books>"Response.ContentType = "text/xml";
    Response.Write("No");
    Response.End();
      

  2.   

    上面那个错了string strXML = "<?xml version="1.0"?><books>.....<books>"Response.ContentType = "text/xml";
    Response.Write(strXML);
    Response.End();
      

  3.   

    string strXML = "<?xml version="1.0"?><books>.....<books>"Response.ContentType = "text/xml";
    Response.Write(strXML);
    Response.End();
    正解!!!