Click here to Skip to main content
15,884,177 members
Articles / Web Development / ASP.NET

Creating a Poll System Using ASP.NET 2.0 Callbacks

Rate me:
Please Sign up or sign in to vote.
4.36/5 (22 votes)
18 Nov 20074 min read 107.6K   2.8K   52  
An article on how to create an AJAX enabled polling system using ASP.NET client callbacks.
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Collections.Generic;

namespace WeeklyPollDemoWebApps
{

    public class PollQuestion
    {
        private int _id;
        private string _text;
        private List<PollChoice> _choices = new List<PollChoice>();

        public int Id
        {
            get { return _id; }
            set { _id = value; }
        }

        public string Text
        {
            get { return _text; }
            set { _text = value; }
        }

        public List<PollChoice> Choices
        {
            get { return _choices; }
            set { _choices = value; }
        }

        public static PollQuestion GetPoll()
        {
            return DataAccess.GetPoll();  
        }

        public static bool Update(int pollQuestionId, int pollChoiceId)
        {
            return DataAccess.UpdatePoll(pollQuestionId, pollChoiceId); 
        }

        public PollQuestion()
        {

        }
    }
}

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
My name is Mohammad Azam and I have been developing iOS applications since 2010. I have worked as a lead mobile developer for VALIC, AIG, Schlumberger, Baker Hughes, Blinds.com and The Home Depot. I have also published tons of my own apps to the App Store and even got featured by Apple for my app, Vegetable Tree. I highly recommend that you check out my portfolio. At present I am working as a lead instructor at DigitalCrafts.




I also have a lot of Udemy courses which you can check out at the following link:
Mohammad Azam Udemy Courses

Comments and Discussions