Closed GoogleCodeExporter closed 9 years ago
You need to disable the HttpOnly flag on the IIS session cookie.
Original comment by frank.co...@gmail.com
on 15 Dec 2009 at 2:49
I tried to immplement the above, but <httpCookies httpOnlyCookies="false"/>
doesn't
work. every call to the httphandler generates a new session id.
Original comment by tinomari...@gmail.com
on 17 Feb 2010 at 11:55
[deleted comment]
[deleted comment]
I solved the problem!
add this to the global.asax..
Sub Application_EndRequest(ByVal sender As Object, ByVal e As EventArgs)
If Response.Cookies.Count > 0 Then
For Each s As String In Response.Cookies.AllKeys
If s.Equals("ASP.NET_SessionId") Then
Response.Cookies("ASP.NET_SessionId").HttpOnly = False
End If
Next
End If
End Sub
Original comment by tijscorn...@gmail.com
on 4 Jun 2010 at 7:01
Works like a sharm, tnx
Original comment by tinomari...@gmail.com
on 8 Jun 2010 at 10:56
Original comment by frank.co...@gmail.com
on 23 Jun 2010 at 2:18
Original issue reported on code.google.com by
kevin.va...@gmail.com
on 1 Dec 2009 at 9:00