ADO.Net DataSet to ADO Recordset

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have two applications, one on ASP.Net and the other on ASP (both have
different explicit databases). It so happens that the ASP application now
wants to use the dataset created in ASP.Net for further information
processing.
How do i make this happen?
 
You don't. The ADODB recordset requires its xml to
be specially formatted in a way that the ADO.NET DataSet
just can't generate.

It would be easier to implement the xml document in
classic ASP rather than work with ADO.
 
Back
Top