I want to get the SessionID of the current authenticated session in the WebMethod function , where EnableSession = false .
I cannot set EnableSession = true in this request because another (long) request on another page blocks SessionState (EnableSessionState == "True" not "Readonly").
Is there a consistent way to get the SessionID from an ASP.NET or Url session cookie for cookieless sessions? I can encode it myself, but I would prefer to use a function that is already documented and tested.
Thank you very much,
Florin.
source
share