Click to See Complete Forum and Search --> : sharing of ADOs across ASPs


r k patil
July 27th, 1999, 07:41 AM
Is there any method by which i can share variables & ADO's among different ASPs. More specifically :
I would like to share the functions/ recordsets defined/created in one ASP to another ASP

Lothar Haensler
July 27th, 1999, 07:44 AM
you can use Session or Application variables to share information between ASPs.
Although, it is generally not recommended to share ADO objects.

Application("myrs") = rs

set rs = Application("myrs")