Click here to Skip to main content
15,885,910 members
Articles / Web Development / ASP.NET
Article

ASP.Net Poll Server Control

Rate me:
Please Sign up or sign in to vote.
4.31/5 (23 votes)
10 Jun 20062 min read 142K   5K   62   46
A custom server control for polling your site users.
Title:       Site Poll Control
Author:      Michael Eccleston
Email:       mike@ecclestonsoftware.com
Environment: VB.Net, ASP.Net
Keywords:    Control, Database, Polls, Triggers, Stored Procedures
Level:       Intermediate
Description: ASP.Net Server Control
Section      ASP.Net
SubSection   Controls

Sample Image - maximum width is 600 pixels

Introduction

A recent project I worked on required the ability to present site visitors with a poll question. In an effort to learn more about custom server controls that inherit from a CompositeControl, I generated a custom server control to provide this functionality. The effort to create this control was fairly simple and I am providing the control to anybody else that may find it helpful in their projects.

The Poll Control allows you to place the control in your webform, set a few properties and add the available answers and current answer count to the PollAnswers collection and you get the above results on your page. Add the PollControl.dll to your toolbox and then place the control on your form. The look of the control is controlled by CSS stylesheet classes.

The control was designed with a Sql Server Express database as the back end data store. The database consists of three tables, PollQuestions, PollAnswers and PollResults. There are triggers on insert and delete of the PollResults table that maintain the vote results automatically. There is also a stored procedure for inserting or deleting poll results. Aside from the initial setup of the control to display it on your form, all you need to provide is a call to the InsertResult stored procedure in the CastVote event.

If you are interested in learning about triggers and stored procedures in a SQL Server Express database, the code source file may provide you with some learning material. The information is fairly easy to understand and may provide you with a starting point to your own triggers and stored procedures. I have provided all of the database scripts so that you can duplicate the database, and I have provided the source code to call the stored procedures.

Using the control

Properties:
CanVoteIf True the question and answers are presented in the Vote Mode with a Cast Vote button.
If False the results are displayed as shown above.
ShowPrecentagesIf True in the results show the vote percentages.
If False in the results show the vote count.
PollQuestionThe poll question to present the visitor.
CSSCaptionThe stylesheet class to use for the PollControl Caption and Question.
CSSPollClassThe stylesheet class to use for the PollControl.
ImagesFolderThe folder location of the images to use for the result bars.
VoteCaptionThe text that you want to proceed the vote count.
Method:
AddPollAnswer()AddPollAnswer( PollId, AnswerId, AnswerText, AnswerCount )
Event:The CastVote event is raised by clicking on the Cast Vote button when the control is in Vote View
CastVote()CastVote( PollId, AnswerId, MemberId )
Sample code in the code behind is shown below.

SAMPLE CODE

//
// The control above was populated with the code shown below.

If Not Page.IsPostBack then
    With PollControl1
        .CanVote = False
        .ShowPercentage = True
        .PollQuestion = "What is your poll question ?"
        .CSSCaption = "PollCaption"
        .CSSPollClass = "PollBack"
        .ImagesFolder = "Images/"
        .VoteCaption = "Votes Cast :"

        ' Loop to populate the PollAnswer Collection

        .AddPollAnswer( PollId, AnswerId, AnswerText, AnswerCount )

        '

    End With
End If

Points of Interest

The design of this control provided a learning experience with custom server controls and SQL Server Express triggers and stored procedures.

History

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
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
dental implant23-Jul-23 6:17
professionaldental implant23-Jul-23 6:17 
Questionhide count vote in header Pin
b.paseban8-May-13 23:18
b.paseban8-May-13 23:18 
hi.
tanks.good worked.
how to hide count vote in header controll?
GeneralMy vote of 1 Pin
eduveliz261213-Jun-12 8:00
eduveliz261213-Jun-12 8:00 
QuestionVersion with database... Pin
Engineer Bill1-Feb-12 10:23
Engineer Bill1-Feb-12 10:23 
QuestionDatabase Driven example in C# Pin
Member 840690622-Dec-11 18:39
Member 840690622-Dec-11 18:39 
Questionhelp!!! Pin
Member 849649517-Dec-11 2:15
Member 849649517-Dec-11 2:15 
GeneralMy vote of 1 Pin
ankitasingh24515-Apr-11 5:25
ankitasingh24515-Apr-11 5:25 
GeneralMy vote of 5 Pin
Thanh2088-Jan-11 4:10
Thanh2088-Jan-11 4:10 
QuestionHow to use database Pin
rizwan18-Aug-10 23:42
rizwan18-Aug-10 23:42 
GeneralNo download Link !!!!11 Pin
ab_dc31-Aug-09 0:54
ab_dc31-Aug-09 0:54 
GeneralRe: No download Link !!!!11 Pin
Mike Eccleston31-Aug-09 9:13
Mike Eccleston31-Aug-09 9:13 
GeneralRe: No download Link !!!!11 Pin
ab_dc2-Sep-09 8:47
ab_dc2-Sep-09 8:47 
QuestionHow to run using a sql database?? Pin
rubble259-Jul-09 0:19
rubble259-Jul-09 0:19 
AnswerRe: How to run using a sql database?? Pin
Mike Eccleston2-Sep-09 9:25
Mike Eccleston2-Sep-09 9:25 
GeneralMy vote of 2 Pin
vuductuan34@gmail.com8-Jun-09 18:16
vuductuan34@gmail.com8-Jun-09 18:16 
GeneralGood Work Pin
dhaval.upadhyay18-Jan-09 18:44
professionaldhaval.upadhyay18-Jan-09 18:44 
GeneralA Bug In Your Project Pin
Jafaripur9-Jan-09 3:24
Jafaripur9-Jan-09 3:24 
GeneralRe: A Bug In Your Project Pin
zaxbowow23-Dec-13 16:55
zaxbowow23-Dec-13 16:55 
QuestionAccessing Functions Pin
slap_maxwell24-Nov-08 8:40
slap_maxwell24-Nov-08 8:40 
GeneralDisplaying data from SQL Pin
Burim Rama9-Jan-08 0:11
Burim Rama9-Jan-08 0:11 
Questioncan you help me!!! Pin
Member 40468028-Jan-08 23:37
Member 40468028-Jan-08 23:37 
Generalthanks for your wonderful work.. Pin
Member 40468028-Jan-08 23:35
Member 40468028-Jan-08 23:35 
Generaldatabase driven Pin
yuori31-Dec-07 1:38
yuori31-Dec-07 1:38 
QuestionHow to get selected answer from this control... Pin
Nothing Is Permanent29-Jun-07 1:34
Nothing Is Permanent29-Jun-07 1:34 
AnswerRe: How to get selected answer from this control... Pin
Mike Eccleston29-Jun-07 2:45
Mike Eccleston29-Jun-07 2:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.