I use session to register a variable via a user browses my website. There is a button that open another page when clicked (with target=\"other\"). In this new page (the second page), I have a link that opens another page (the third page) again when clicked (with target=\"other2\"). I want users to browse pages when session variable are registered only.
The problem is that this third page shows that the session variable is not set, or session is not passed to the third page. If I change from target=\"other2\" to target=\"other\" in the second page, there is no such problem, but go to that link without open a new browser. I want that link to be clicked and open page from a new browser while session remains.
How could I solve this problem? Thanks.