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
Printable View
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
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")