Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / ASP.NET

simple Asp.net singleton

1.00/5 (2 votes)
26 Oct 2011CPOL 9.4K  
simple Asp.net singleton
This creates a session singleton. In this example I am persisting a stringbuilder however you generally want a wrapper object in the case where you have two items that need persisting for that page. To generate the unique strings you can reflect the page name. Using this shows that you should rarely/never use Session.add ( within the same page context. ) Between pages will require some more error handling but will work as well. You can also use a per request session in some cases but that is beyond this sample.



C#
/// <summary>
/// Persist the xml property as if it was a local variable.
/// </summary>
private StringBuilder xml
{
    get
    {
        return (HttpContext.Current.Session["UNIQUESTRINGHERE"] ??
        (HttpContext.Current.Session["UNIQUESTRINGHERE"] =
        new StringBuilder())) as StringBuilder;
    }
}

License

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