I have an iframe that:
- does a post request to server
- server returns 302 and sets cookie
- browser not saves cookies but does a post(don't know why not get but it doesn't matter)
- cookie from #3 are lost
i've found a workaround:
Response.AddHeader("Pragma", "no-cache");
Response.AddHeader("Cache-Control", "no-cache");
but it didn't help.
mb anybody knows what can fix this issue?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…