How to prevent IIS7 from rejecting my cookies?

I am using Windows Vista x64 Service Pack 1 (SP1) and I am developing an ASP.NET application with IIS7 as a web server. I have a problem where my cookies do not β€œstick” to the session, so I got Google, and I found that there was a known problem with duplicate headers of duplicate responses instead of adding to the session. However, this issue should have been fixed in Vista Service Pack 1.

Any ideas on what might be my problem?


I use the integrated application pool and the maximum number of workflows == 1.

What meaning is emphasized? Does it matter where in the URL it is (for example, it matters if it is in the host name but not in the query string)?

+6
cookies windows-vista iis iis-7
source share
1 answer

Just a thought, you have an underscore in the url. e.g. http: // my_site ?

And one more thing: you are not using the application pool in web garden mode? those. Process Model β†’ Maximum Workflows:> 1

What type of application pool do you use - Integrated or classic mode?

+4
source share

All Articles