Remember session variables belong to the application that created them, they can only be passed explicitly through a post or a get as parameters to another web application. No other application can directly read the session variables in the original application.
There are ways around this of course, a common one is to save the necessary information to a database that the other application can access. You can simply pass a token (record id) to the other application and it can then use the token to retrieve the session information and reconstruct the session variables. Here's an article that details sharing session state between a .NET application and a classic ASP application. The concepts would be the same, though you would not be limited to using a database, since both apps are in .NET you could also set up a remoting application to accomplish the same thing. It would serve as the central repository. On 8/1/05, Mike Belcher <[EMAIL PROTECTED]> wrote: > Is that possible? I do know I can put things in a query string.............. > but is it actually possible to say take > http://www.Sessions.com/(S(d2ay5k55u0remf55o4lrkx45))/ServerControl.aspx > session variables and then have then passed to a new website that can read > them? Just wondering............... > > > > > > > Yahoo! Groups Links > > > > > > > -- Dean Fiala Very Practical Software, Inc http://www.vpsw.com ------------------------ Yahoo! Groups Sponsor --------------------~--> <font face=arial size=-1><a href="http://us.ard.yahoo.com/SIG=12hlovr51/M=362131.6882499.7825260.1510227/D=groups/S=1705006764:TM/Y=YAHOO/EXP=1122995133/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org ">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life - brought to you by One Economy</a>.</font> --------------------------------------------------------------------~-> Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
