turning off session

  • Thread starter Thread starter Zester
  • Start date Start date
Z

Zester

Hi,

In our web.config file's sessionState element, we set mode="Off" but we
still see ASPSESSIONIDXXXXX shows up in the request cookies. Do you know
why?

thanks!
 
Since request did not go though asp.dll I do not see why would he end up
with ASPSESSION.. cookie..
IIS did not plant them by itself.. (unless of course he hit asp page before
and has not closed the browser yet)...


Or just a wild guess....

What if default.asp page is marked as default in the directory and IIS is
actually trying to route request through asp.dll
then solution will be just remove default.asp from list of defaulted
pages...


George.
 
Since request did not go though asp.dll I do not see why would he end up
with ASPSESSION.. cookie..
IIS did not plant them by itself.. (unless of course he hit asp page before
and has not closed the browser yet)...


Or just a wild guess....

What if default.asp page is marked as default in the directory and IIS is
actually trying to route request through asp.dll
then solution will be just remove default.asp from list of defaulted
pages...


George.
 
Ok, I turned asp session support off in iis so I don't see aspsessionidxxxx
anymore but now I see ASP.NET_SessionId = ....

Does anybody know how to turn it off completely?
thanks!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top