close
Skip to main content

New answers tagged

Score of 0

Early session and cookie sign-out in ASP.NET Core

May be you also needed to use Session middleware after Routing middleware, not before: app.UseRouting(); ... app.UseSession();
Score of 0

Codeigniter pass db result object from model to controller

Model methods should not directly access submission or session data. Instead pass in the username value as a parameter of the model method and return either null if there is no qualifying account or ...

Top 50 recent answers are included