Hi as a work around to the "Flash Cookie bug" i am passing thru the session in flash var.
My question is , once i have the session, how do i then exract the userId.
How to extract user Id from session
Re: How to extract user Id from session
In ASP.NET you can save and retrieve values form session in following way
Code: Select all
//Set
Session["id"] = 123;
//Get
int id = AlwaysConvert.ToInt(Session["id"]);