0
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

如何修复此错误?

4

1 回答 1

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"?>
于 2013-07-09T14:53:48.570 回答