<%response.ContentType="text/xml"response.Write("<?xml version='1.0' encoding='ISO-8859-1'?>")response.Write("<note>")response.Write("<from>John</from>")response.Write("<to>George</to>")response.Write("<message>Don't forget the meeting!</message>")response.Write("</note>")%>

评论