Click here to Skip to main content
15,891,597 members
Articles / Web Development / HTML

Web Application State

Rate me:
Please Sign up or sign in to vote.
4.87/5 (16 votes)
15 Apr 2008CPOL7 min read 83.3K   1.2K   127  
This article explains how to maintain the web application state.
using System.IO;
using System.Xml.Serialization;

namespace AndrewGolik.Training.Components
{
    public static class Serializer<T> where T : class
    {
        public static string Serialize(T obj)
        {
            StringWriter writer = new StringWriter();
            XmlSerializer serializer = new XmlSerializer(typeof (T));
            serializer.Serialize(writer, obj);
            return writer.ToString();
        }

        public static T Deserialize(string xml)
        {
            if(string.IsNullOrEmpty(xml))
                return null;
            XmlSerializer serializer = new XmlSerializer(typeof (T));
            StringReader reader = new StringReader(xml);
            return (T) serializer.Deserialize(reader);
        }
    }
}

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
Belarus Belarus
Andrew Golik is a software professional working in Minsk, Belarus.
He enjoys design infrastructures based on object oriented paradigm. His programming experience includes ASP, ASP.NET, .NET, COM, JAVA, PHP, DHTML, AJAX, blah blah blah....

Andrew Golik's Blog

Comments and Discussions