using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;

using System.Web.UI;

using System.Web.UI.WebControls;

 

namespace WebServices

{

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

    {

        protected void Page_Load(object sender, EventArgs e)

        {

            VoteSvc.VoteService pxy;

            int count = 0;

 

            // Retrieve the web service proxy object from the Session

            if (Session["pxy"] != null)

            {

                pxy = (VoteSvc.VoteService)Session["pxy"];

                count = pxy.GetVoteCount();

            }

 

            lblDisplay.Text = "You voted " + count + " times. <br />" +

                              "Your votes were recorded. Thanks for voting.";

        }

    }

}