i am having problems in working with asp sessions ...
when i move from one page to another the session is expiring an i am getting a new session id..
is it not possible to work with sessions..
or is there any other way to track a user...
Posted by saju nair, sajunair_or@yahoo.com
on August 19, 2000 at 10:00
Posted by Sean Ellis, sean.ellis@eristic.co.uk
on August 22, 2000 at 13:49
Many wap phones do not support cookies. Consequently, you should not use sessions since they are reliant upon cookies.
We got around this problem by developing a collection of objects that reside on the server that act as sessions. Keeping track of which session you are using is as simple as passing the sessionID (created by the sessions object) between each asp page. This does mean that all pages must be asp once the session is instantiated otherwise you lose track of the sessionID.