Click here to Skip to main content
15,893,588 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 142.2K   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

 
GeneralRe: How to get selected answer from this control... Pin
Nothing Is Permanent29-Jun-07 20:00
Nothing Is Permanent29-Jun-07 20:00 
Generaldatabase example Pin
VinhV6-Jun-07 7:55
VinhV6-Jun-07 7:55 
QuestionDatabase Driven Example Pin
Azzabraham Lincoln13-Feb-07 11:58
Azzabraham Lincoln13-Feb-07 11:58 
AnswerRe: Database Driven Example Pin
Mike Eccleston13-Feb-07 14:41
Mike Eccleston13-Feb-07 14:41 
GeneralRe: Database Driven Example Pin
mxcmxc19-Apr-07 18:53
mxcmxc19-Apr-07 18:53 
GeneralRe: Database Driven Example Pin
mxcmxc23-Apr-07 21:37
mxcmxc23-Apr-07 21:37 
GeneralRe: Database Driven Example Pin
mxcmxc13-May-07 21:47
mxcmxc13-May-07 21:47 
GeneralRe: Database Driven Example Pin
rosastar24-Mar-08 20:27
rosastar24-Mar-08 20:27 
GeneralRe: Database Driven Example Pin
s4sadia10-Nov-09 20:50
s4sadia10-Nov-09 20:50 
QuestionRe: Database Driven Example Pin
sibercyberia15-May-07 21:20
sibercyberia15-May-07 21:20 
AnswerRe: Database Driven Example Pin
dschips16-May-07 8:04
dschips16-May-07 8:04 
GeneralRe: Database Driven Example Pin
javivarela5-Jun-11 0:21
javivarela5-Jun-11 0:21 
GeneralCloseType [modified] Pin
ihles9-Feb-07 4:46
ihles9-Feb-07 4:46 
GeneralRe: CloseType Pin
Mike Eccleston9-Feb-07 5:39
Mike Eccleston9-Feb-07 5:39 
GeneralRe: CloseType Pin
ihles9-Feb-07 7:56
ihles9-Feb-07 7:56 
QuestionLinking the poll to a different back-end Pin
atomiton4-Feb-07 6:11
atomiton4-Feb-07 6:11 
AnswerRe: Linking the poll to a different back-end Pin
Mike Eccleston4-Feb-07 6:46
Mike Eccleston4-Feb-07 6:46 
GeneralRe: Linking the poll to a different back-end Pin
atomiton4-Feb-07 14:57
atomiton4-Feb-07 14:57 
GeneralSQL Script Pin
Geert van Horrik4-Jul-06 23:12
Geert van Horrik4-Jul-06 23:12 
GeneralRe: SQL Script Pin
Mike Eccleston6-Jul-06 2:46
Mike Eccleston6-Jul-06 2:46 
GeneralRe: SQL Script Pin
cmug11-Mar-07 16:47
cmug11-Mar-07 16:47 

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.