using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
namespace
Services
{
/// <summary>
/// Summary description for VoteService
/// </summary>
[WebService(Namespace
= "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using
ASP.NET AJAX, uncomment the following line.
// [System.Web.Script.Services.ScriptService]
public class VoteService : System.Web.Services.WebService
{
int votes = 0;
[WebMethod(EnableSession = true)]
public int GetVoteCount()
{
if (Session["VoteCount"] != null)
votes
= (int)Session["VoteCount"];
return votes;
}
[WebMethod(EnableSession = true)]
public void AddVote()
{
if (Session["VoteCount"] != null)
votes
= (int)Session["VoteCount"];
votes =
votes + 1;
Session["VoteCount"] = votes;
}
}
}