使用vb脚本在经典asp中输入xml

时间:2013-07-09 12:48:15

标签: xml asp-classic vbscript

response.ContentType="text/xml"

response.write("<?xml version=""1.0"" encoding=""iso-8859-1""?>

这会引发错误:

error on line 9 at column 6: XML declaration allowed only at the start of the document

如何解决此错误?

1 个答案:

答案 0 :(得分:1)

使用以下行启动.asp文件:

<?xml version="1.0" encoding="iso-8859-1"?>
<% Response.ContentType = "text/xml" %>

包含以下行(同一行中的所有内容):

<% Response.ContentType = "text/xml" %><?xml version="1.0" encoding="iso-8859-1"?>