Passing Session Cookies from ASP to ASP.NET

N

Neil Negandhi

I've set session cookies in an asp script and need to retrieve the values in
an asp.net application (same virtual directory). I've taken the sample code
in the httprequest.cookies VS.NET2003 help topic to see what's being passed.
I can see all the cookie names but all the values are empty. How can I
solve this? Is there another technique I can use to securely pass values
from asp to asp.net?
 
C

Curt_C [MVP]

use either POST, QueryString or store the values in a DB/File/etc on the
server for retrieval
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top