On a hosted web server I have asp pages that when I login it stores a session throughout the website until the session is killed. What I am trying to do is keep a session alive while going from one web server to another. So let's say I login on my website and it creates a session. On my website I have a link to another website of mine on a different server. On that server, the page that I'm linking to has the same code at the top of the page as my pages on my first server. When I click the link and I goto the page, the session is killed. Is there a way to keep it alive?
Here's my session code:
<%
if not session("userinfo")="" then
Dim userinfo,prefix
userinfo=split(session("userinfo"),"|")
%>
<%
else
response.redirect ("%>
<%end if%>
Here's my session code:
<%
if not session("userinfo")="" then
Dim userinfo,prefix
userinfo=split(session("userinfo"),"|")
%>
<%
else
response.redirect ("%>
<%end if%>