NickD
NickD

Reputation: 2646

Cookie Problem with ASP.NET / ASP.NET MVC2

new Version of Firefox and IE8 seem to use one windows process. We have a multi-tenancy web application which gets testet by our support team. they have different cases open at the same time which produce side-effects as the session is the same for the instance.

is there a possibility to solve this problem by code? i think sessionstate cookieless=true is no option.

Any ideas?

Upvotes: 0

Views: 178

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1039368

I don't think that you should modify your application code for this. Modify the way it is tested because in the real world that's how the application will be used.

So for IE8 you could use the -nomerge command line option when launching iexplore.exe. Another possibility is play with the TabProcGrowth setting in the registry.

Upvotes: 3

Related Questions