|
-
April 4th, 2003, 11:24 PM
#1
"sharing session between asp and asp.net"
Hello,
I have an ASP application and an ASP.NET application now I want to keep some session variables common in both the application, like login details etc, my problem is "how can I use session created by ASP in ASP.NET or v/v?"
If this is absolutely not possible then what is the best way to achieve the same.
Thanks
Anupam.
-
April 5th, 2003, 12:51 AM
#2
You cannot share session states between ASP and ASP.NET, therefore you cannot use the session to pass information. There are several other options though, the first being cookies. I believe if you do not set an expiration on a cookie it will live for that session only. Other ways of passing information include passing name/value pairs on the URL, e.g. http://localhost/MyWebService.aspx?Search=abc. You can also use form data to share information.
-
April 5th, 2003, 01:04 AM
#3
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|