That always was a pretty bogus idea.
Doing
Code:
Set Session("passThrough") = me
is supposed to set the session variable to a reference to the current page. But that is *NOT* a thread-safe thing to do, even if it happened to work! Could have disastrous consequence on your site performance.
I would definitely ignore that post.
What you *can* do is simply pass DATA back and forth in session variable(s) and then remove the session variable(s) when you are done. You could even pass an array back and forth, so you are only using one session variable.
Something like:
Code:
' *** page 1 ***
Session("passThrough") = Array("testing", 3.14159286, "john doe" )
' *** page 2 ***
info = Session("passThrough")
message = info(0)
number = info(1)
messageFrom = info(2)
... code code code ...
info(0) = "message processed"
' *** page 1 again
info = Session("passThrough")
statusMessage = info(0)
...
Session.Contents.Remove("passThrough") ' no longer needed
Bookmarks