There is no great way to share session state between ASP and ASP.NET. But
that doesn't mean you don't have options.
Here are some common ways:
* Store the data in a common database
* Pass data from page to page on the QueryString
* Store the data in cookies
* Use a 3rd party session sharing component
(Here's one:
http://www.consonica.com/solutions/d...tch/index.html)
* Use COM Interop to provide an object that both sides can access that
handles the data.
Here's an example of the latter:
http://msdn.microsoft.com/library/de...rtToASPNET.asp
--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net
"senthil" <> wrote in message
news:04f201c34a63$c4140550$...
> Hi,
> I am redirecting to a .ASP page from an .ASPX page.
> In the .ASP page, Is the session variables which are
> stored previously accessible? If so what properties in
> the .ASPX page should be set in order to make session
> variables visible to the oncoming asp page.
>
> Thanks,
> Senthil