Forum Moderators: open
I'm not sure exactly what you are trying to do, but to pass info around you will have to use a cookie or a querystring (or a form post).
If the servers are both on the same domain e.g. www.mydomain.com and secure.mydomain.com you can set cookie values with the domain set as "mydomain.com" and access them from either server.
If the servers have different domains, I think you would have to at least pass an id in the querystring. HTH.
When I use a session variable on server 1 I do not see the Sesson variable on server 2?
That's how ASP sessions work. When a session begins the web server sets a unique id cookie in the browser. When you then store a session variable it is held on that server in memory, keyed with that unique id.
When you go to a different server the session variable isn't available because it isn't in the browser, it's in the memory of the original server.
So to pass information between different servers you have to either use domain-level cookies or querystring variables.
If you explain what you need to pass between servers we may be able to give you more specific tips. HTH.