Click here to Skip to main content
15,884,838 members
Articles / Web Development / ASP.NET

Session Vizualizer for Visual Studio 2005

Rate me:
Please Sign up or sign in to vote.
5.00/5 (10 votes)
29 Nov 2008CPOL2 min read 25.1K   208   26  
Debug tool for analyzing Session content in web applications.
using System;
using System.Collections.Generic;
using System.Text;
using System.Web.SessionState;

namespace SessionVisualizer
{
    [Serializable]
    public class SessionInfo
    {
        private SortedDictionary<string, object> _items;
      
        public SortedDictionary<string, object> Items
        {
            get
            {
                if (_items == null)
                {
                    _items = new SortedDictionary<string, object>();
                }

                return _items;
            }
            set
            {
                _items = value;
            }
        }
    }


}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Romania Romania
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions