.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

'hasOwnProperty' in javascript -

python - ValueError: No axis named 1 for object type <class 'pandas.core.series.Series'> -

java - How to provide dependency injections in Eclipse RCP 3.x? -