beckyp 0 Newbie Poster

There have been some excellent articles on converting asp session variables to .net but not the other way round. What is the best way to convert .net session variables to classic asp session variables?

This must have been done by many people by now, so what have you found to be the best solution?

These are a couple of the articles for converting asp -> .net. They don't mention converting them the other way. (Am I missing something?)

Ian Suttle: http://www.eggheadcafe.com/articles/20041017.asp

Dennis Hurst: http://searchwindevelopment.techtarget.com/tip/0,289483,sid8_gci951935,00.html

I want a light solution: the microsoft solution looks like it might have high performance overhead with it's database.

I tested Ian Suttle's solution and it works great, dynamically creating xml containing the classic asp session variable in asp and then including that within the .net code. But the problem is trying to send .net session variables the other way round (to asp pages) with the minimum amount of asp code change.

I am planning to run classic asp and .net side by side as a temporary measure while converting the site, section by section from classic asp to .net.

Any pointers would be hugely appreciated.