|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
ADO.Net DataSet to ADO RecordsetI 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. -- Show quote2005 Microsoft MVP C# Robbe Morris http://www.robbemorris.com http://www.learncsharp.net/home/listings.aspx "Ganesh" <Gan***@discussions.microsoft.com> wrote in message news:D7561ED8-F2DC-441A-BF5C-EA3DFF9FD30E@microsoft.com... >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? Hi,
There are several ways to handle it 1. You could try to convert DataSet into ADO Recordset. See next KB with an example how to do this http://support.microsoft.com/default.aspx?scid=kb;en-us;316337 2. You could create .NET component that will use DataSet inside, but will be exposed as a COM and you could use it from ASP Show quote "Ganesh" <Gan***@discussions.microsoft.com> wrote in message news:D7561ED8-F2DC-441A-BF5C-EA3DFF9FD30E@microsoft.com... >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? Ganesh,
Just set an X after your ASP pages and extend them with code as you can see in samples here. (Assuming that you have installed dotNet on your webserver) http://samples.gotdotnet.com/quickstart/ I hope this helps a little bit? Cor |
|||||||||||||||||||||||