How do I tap ASP.NET session object with ASP 3.0?

  • Thread starter Thread starter Jeffrey Palermo [MCP]
  • Start date Start date
J

Jeffrey Palermo [MCP]

I have a solution that exposes the ASP.NET session object via web services,
and then I consume it with ASP 3.0 with the Soap toolkit, but then every ASP
web request becomes two, and it slows down my app. Has anyone solved this
problem?

Best Regards,
Jeffrey Palermo
 
You need to persist your Classic ASP session information somewhere that ASP
..NET can get at it. This could be a cookie, flat file or database (very
common), or some other home grown solution.
 
Back
Top