Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

0 votes
0 answers
160 views

How to manage cookies working for Internet Explorer 11 from Asp.Net MVC?

I am working with Asp.Net MVC and in that I am handling cookies like below : Response.Expires = 0; Response.Buffer = true; Response.ClearContent(); Response.AddHeader("content-disposition", "inline; ...
Harry R's user avatar
  • 79
0 votes
0 answers
470 views

Setting Cookies not working in Internet Explorer in Higher Environment

Following is the code for setting the cookie: FormsAuthenticationTicket ticket = new FormsAuthenticationTicket(1, "AuthenticationToken", DateTime.Now, DateTime.Now.AddSeconds(60), ...
Prashant's user avatar
0 votes
1 answer
6k views

SameSite=None w/ Secure Breaking iFrame in IE11

With the recent changes it seems that SameSite cookie attributes are throwing a wrench into my website now. A cross-browser iframe that was working before on my site is now broken - even with the ...
CJdriver's user avatar
  • 458
0 votes
0 answers
70 views

AntiFogeryToken Cookie is always store and send back to server even when i block all cookies on IE 11 (other browsers work as expected)

Im currently set up a feature which allow server side code aware of whether this browser is enable cookie or not. the solution is to use antiforgery cookie which is sent back to server whenever ...
Nguyễn Văn Lệnh's user avatar
1 vote
2 answers
465 views

IE11 sharing host-only cookies to sub-domains

Does anyone know how can we make IE 11 to not share host-only cookies to sub-domains? Having this issue since we've moved our test system to a sub domain. It works fine in Google Chrome. Found this ...
c-sharp's user avatar
  • 583