How to pass the entire contents of Classic ASP session to .net code?

jasbacks

New Member
I know the drill about how to call .net code from a Classic ASP site (Server.CreateObject, gacutil, and all the rest). I'm talking about invoking a .net DLL from VBScript code. (This has nothing to do with ASP.net)What I would like to know is, how can I pass the contents of the entire Classic ASP session to the .net code. I think that I would like to pass \[code\]Session.Contents\[/code\] to the .net code, but I don't know how to write an interface that would accept that object.Bonus points if you can also tell me how to pass the entire contents of \[code\]Request.Form\[/code\] as well as \[code\]ASPError\[/code\] objects.
 
Back
Top