Skip to main content

Accessing ASP.NET Session Data Using Dynamics

// C#
Session["MyInt"] = 12;
int myInt = (int)Session["MyInt"];

Comments

Popular posts from this blog