response.ContentType="text/xml"
response.write("<?xml version=""1.0"" encoding=""iso-8859-1""?>
And this throws an error:
error on line 9 at column 6: XML declaration allowed only at the start of the document
How to fix this error?
Start your .asp file with the following lines:
<?xml version="1.0" encoding="iso-8859-1"?>
<% Response.ContentType = "text/xml" %>
OR
with the following lines (everything in the same line):
<% Response.ContentType = "text/xml" %><?xml version="1.0" encoding="iso-8859-1"?>
Recordset("ContactWebAddres")?