Hi,
I have a webpage that uses xml in an AJAX fashion. When I point it at a static xml file it works fine. When I create the xml dynamically in vb.net framework 1.1 (MS Visual studio 2003) there is a problem. The xml comes down fine when pointing the browser at the url. It also works fine in firefox, but the xml document does not get created properly in ie.
Any pointers much appreciated.
Blow is the code used to generate the xml.
==============================
Response.ContentType = "text/xml"
Response.Write("<?xml version=""1.0"" standalone=""yes""?><blah>blah</blah>")
Response.Flush()
Response.Close()
Response.End()
I have a webpage that uses xml in an AJAX fashion. When I point it at a static xml file it works fine. When I create the xml dynamically in vb.net framework 1.1 (MS Visual studio 2003) there is a problem. The xml comes down fine when pointing the browser at the url. It also works fine in firefox, but the xml document does not get created properly in ie.
Any pointers much appreciated.
Blow is the code used to generate the xml.
==============================
Response.ContentType = "text/xml"
Response.Write("<?xml version=""1.0"" standalone=""yes""?><blah>blah</blah>")
Response.Flush()
Response.Close()
Response.End()