c# Umbraco Razor Display List of all Session Varioables

@inherits umbraco.MacroEngines.DynamicNodeContext
<p>Session Variables</p>

@HttpContext.Current.Items.Count:<br />


@for (int i =1; i <= @HttpContext.Current.Session.Contents.Count; i++)
{
   @HttpContext.Current.Session.Keys[i-1];
<br />

}

Comments

Popular posts from this blog

Umbraco Razor Sort Nodes Ascending or Descending

Umbraco Razor get Querystring

Create a .NET Contact Form that Gets the Last Url Visited in C# Can also be Used in Umbraco