Hi,
My Question is
If i disabled cookies then how session will work?
Thanks in Advance
Printable View
Hi,
My Question is
If i disabled cookies then how session will work?
Thanks in Advance
ASP Session is implemented using cookies, so if you disable cookies session wont work.Quote:
Originally posted by manu487
Hi,
My Question is
If i disabled cookies then how session will work?
Thanks in Advance
Do you need an ASP Tutorial?
In theory you could log the user's IP in an Application variable (you can use arrays in that). Then search through the Application variables and find the one that matches the users IP and extract information.
cjqp
With .Net the Cookie Info is embedded into the URL so sessions will still work.
With classic ASP there are third party products like CookieMunger to do this but I have heard they are quite resource intensive.