I need to transfer a user to a page which requires session data which is stored within a different session.
Is it possible in some cases to migrate the session data by setting the session cookie on the user’s browser?
Currently I have no workaround, and using session data seems like the only option I have at the moment.
Sure you can. Simply set a new cookie and redirect. You will have to do this server-side. Setting a session cookie client-side will be problematic.
You can expand on this. Here is a working example .aspx page. To switch sessions, simply add a url param ‘sessionId’.