CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 1999
    Posts
    3

    sharing of ADOs across ASPs

    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


  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: sharing of ADOs across ASPs

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


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured