I have a website to which i’ve added dynamic javascript code generated on server. Code generated is an image file with some guids as query strings. I use Handler to create js response while at the same i assign Session unique value for new visitor so i can distinguish those from already surfing on site user. All browsers save Session during postbacks on initial site except Internet Explorer which generates each time new Guid for already existing customer.
Is there any way to fix it? Why does this happen?
At the end with help from @CResults and @Alex Key i’ve found out that IE blocks 3rd party cookies by default which was a case in my project.
Fix was as simple as adding p3p HTTP Header to Handler…
thanks to both of ya!!!