M
MattB
Hi. I've posted this elsewhere and I just want to be sure I've got the right
answer. I have a asp.net application (vb.net) that consumes data sets passed
as strings from a C++ dll. I'm trying to help a client do the same thing,
but they are insistent on using classic ASP, which I'm less familiar with.
The datasets are ADO stream objects he generated in C++. It's ADO
2.8.
In vb.net I can consume them like this:
Dim dsItem As New DataSet, strXML as String
Dim XMLRead As New System.IO.StringReader(strXML)
dsItem.ReadXml(XMLRead)
Can anyone tell me how the same thing might be done in Classic ASP? I gather
it's more complicated, and one source has said it can't be done. I'm hoping
that wasn't true. I thought I'd try here since I bet at least some of you
are/were classic ASP developers too. Thanks!
answer. I have a asp.net application (vb.net) that consumes data sets passed
as strings from a C++ dll. I'm trying to help a client do the same thing,
but they are insistent on using classic ASP, which I'm less familiar with.
The datasets are ADO stream objects he generated in C++. It's ADO
2.8.
In vb.net I can consume them like this:
Dim dsItem As New DataSet, strXML as String
Dim XMLRead As New System.IO.StringReader(strXML)
dsItem.ReadXml(XMLRead)
Can anyone tell me how the same thing might be done in Classic ASP? I gather
it's more complicated, and one source has said it can't be done. I'm hoping
that wasn't true. I thought I'd try here since I bet at least some of you
are/were classic ASP developers too. Thanks!