asp_web_howto thread: Convert ASP Recordset to XML
Message #1 by "Salisa" <salisa1@h...> on Mon, 11 Mar 2002 08:53:08
|
|
How do I convert an ASP Recordset to XML?
Message #2 by Mark Eckeard <meckeard2000@y...> on Mon, 11 Mar 2002 05:05:23 -0800 (PST)
|
|
One way is to save the recordset as a .xml file. Then
open the recordset and wrap the opening XML tags
around it.
Mark
--- Salisa <salisa1@h...> wrote:
> How do I convert an ASP Recordset to XML?
$subst('Email.Unsub').
__________________________________________________
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!
http://mail.yahoo.com/
Message #3 by "TomMallard" <mallard@s...> on Mon, 11 Mar 2002 06:05:24 -0800
|
|
Another is to create an xmldom on your page, fill it with the recordset data
and save that as xml.
tom mallard
seattle
-----Original Message-----
From: Mark Eckeard [mailto:meckeard2000@y...]
Sent: Monday, March 11, 2002 5:05 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Convert ASP Recordset to XML
One way is to save the recordset as a .xml file. Then
open the recordset and wrap the opening XML tags
around it.
Mark
--- Salisa <salisa1@h...> wrote:
> How do I convert an ASP Recordset to XML?
$subst('Email.Unsub').
__________________________________________________
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!
http://mail.yahoo.com/
$subst('Email.Unsub').
Message #4 by "Ken Schaefer" <ken@a...> on Tue, 12 Mar 2002 12:55:20 +1100
|
|
<%
objRS.Save destination.xml, adPersistXML
%>
Cheers
Ken
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
From: "Salisa" <salisa1@h...>
Subject: [asp_web_howto] Convert ASP Recordset to XML
: How do I convert an ASP Recordset to XML?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|