namespace StateManagement

{

    public partial class SessionExample1_Results : System.Web.UI.Page

    {

        protected void Page_Load(object sender, EventArgs e)

        {

            int count = (int)Session["VoteCount"];

            String name = Session["Name"].ToString();

 

            if (count > 1)

            {

                lblDisplay.ForeColor = System.Drawing.Color.DarkRed;

                lblDisplay.Text = "Hey " + name + ", you voted " + count + " times. <br />" +

                                  "Since you are a moron and voted more than once, your vote wasn't recorded.";

            }

            else

            {

                lblDisplay.Text = "Hi " + name + ", your vote was recorded. <br />" +

                                  "Thanks for voting.";

            }

        }

    }

}