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
如何解决此错误?
答案 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"?>