Session Cookie

  • Thread starter Thread starter Al Reid
  • Start date Start date
A

Al Reid

I have a simple web site with open access that does not require the user to log in, fill out ant forms, etc. Is there a way to
prevent ASP.Net from generating and sending Session Cookies?

TIA,
 
There may be a way to do this by modifying what is in the web.config file, forms tag. Just had a question
I set up the path as c:/ and file name for the cookies file in the web.config file, but I can not locate the cookie
file. Is it hidden, do you know where it is normally stored? thanks paul.
 
Is there a way to prevent ASP.Net from generating and sending Session
Cookies?

To do so by disabling session state at the top of each aspx page as an
@PAGE attribute or in the web.config file.
 
Peter,

Thanks. I changed the line in the web.config from

cookieless="false" to

cookieless="true"

Is this what you were referring to?

--
Al Reid

"It ain't what you don't know that gets you into trouble. It's what you know
for sure that just ain't so." --- Mark Twain
 
Back
Top