I have a lot of session variables being used on https://secure.mysite.com. When the user travels to a non secure page on the site (without the sub-domain - [url]http://mysite.com)[/url], I can't access the session variables from the secure page.
What I need to do on the non secure page is check to see if a session variable from the secure page exists. If so I need to display a link to the secure page.
I can't use cookies because I only want the link to show up if the secure page session is availably and the cookie may still be active when the sessions have times out.
Any ideas on how I can accomplish this.