New to XML and, I'm creating a XML structure with data from a recordset within a MTS object returning a XML string called from a ASP page . I'm using response.write to display the XML structure and all I'm getting is the data written across the screen and not in a XML type structure. The basic programing structures are as followed;
ASP
set objHTML = Server.CreateObject("NoMatch.clsNoMatch"
strHTML = objHTML.GenHtmlReport(strStartDate, strEndDate)
DLL
GenHtmlReport = "<?xml version='1.0' ?>"
XML stuff
ASP
response.write strHTML
I hope this is enough information to provide me a clue on sending XML data to the client from a dll returned string.
Thanks in advance
ASP
set objHTML = Server.CreateObject("NoMatch.clsNoMatch"
DLL
GenHtmlReport = "<?xml version='1.0' ?>"
XML stuff
ASP
response.write strHTML
I hope this is enough information to provide me a clue on sending XML data to the client from a dll returned string.
Thanks in advance