|
-
Sep 11th, 2002, 03:50 PM
#1
Thread Starter
Junior Member
sharing session vars from ASP to ASP.net
does anyone know how to access an asp session variable from asp.net? ASP.net does not use the same session vars that asp uses even though they might be the same name? I am not using the state server yet - and proably won't be able to for a bit, so I am just using plain sessions not SQL or any of that other stuff
-
Sep 11th, 2002, 03:58 PM
#2
we discussed this before, and the only option we see is passing the needed data for asp to aspx using querystrings
-
Sep 11th, 2002, 04:03 PM
#3
Thread Starter
Junior Member
unfortunely - I don't have that option - my secruity info is stored in the sessions, so query strings are out of the question
any other ideas? I am migrating a vb webclass and asp app over to .net but the process will occur over several releases I don't want to useres to have to login twice in a hybrid app
-
Sep 11th, 2002, 05:24 PM
#4
New Member
I ran into this same dilemma (i'm in the process of converting a huge .asp system to .aspx).
without querystrings, I think you're only other option is to load the Session vars into a Database Table in asp, then reload them into aspx session vars.
-
Sep 11th, 2002, 08:46 PM
#5
Addicted Member
Same Problem
I had the same problem I actually ended up writing the data to a text file on the server than when the aspx application ran I read and deleted it. I actually encrypted the data just incase but that was just me. I also suppose that you could encrypt the data then pass it in the querystring.
Jeremy
-
Sep 12th, 2002, 08:44 AM
#6
Thread Starter
Junior Member
thanks
Thanks for the suggestions guys
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
|