.net - ASP.NET MVC 5 and Session -


is there .net 4.5+ asp.net mvc 5 way of initializing session variable when user makes request first time application?

is there wrong doing this?

if (session["key"] == null)    session["key"] = value; 

that seems accomplish you're looking for.


Comments

Popular posts from this blog

javascript - Knockout pushing observable and computed data to an observable array -

'hasOwnProperty' in javascript -

Trouble making a JSON string -