vote up 2 vote down star
1

I'm trying to make a ASP.NET (C#) poll that will ask a user a Yes/No question and log that vote to the database. To prevent spam I would like to be able to make sure users can only vote once. I've thought about logging the users IP address. If this is the answer can someone give me a tutorial that shows how this can be accomplished. If this is not the answer then give me your suggestions.

Edit: I'm not asking users to register as this is not my website.

flag

This would be better as a language-independent question. :) – skiphoppy Feb 7 at 1:30
I only use ASP.NET and C#. I don't know any other languages except C++ which does not work for websites. Oh and some very basic JavaScript. – Lucas McCoy Feb 7 at 1:33

9 Answers

vote up -1 vote down check

You can get at the IP address using:

HttpContext.Current.Request.UserHostAddress;

or

HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];

Should be easy enough to save to DB and check if IP already exists on each poll.

link|flag
That's kinda what I was looking for. – Lucas McCoy Feb 7 at 1:29
While that gets you an IP address, on its own, it is not a particularly good indicator for voting (as I and others have mentioned) – Mitch Wheat Feb 7 at 4:24
@Mitch Wheat, This is the standard practise. It's not fool proof but this is the accepted way of approaching the problem. Analytics suites count UUs based on the same. If you have any suggestions short of having the user register as your answer suggests, I'd like to hear about it. – aleemb Feb 7 at 15:35
I implemented this system once and got complaints from a user because their office's traffic all came from the same IP, so it was one vote for the whole office, not person. – domus.vita Feb 9 at 1:15
The work around is quite easy. Set a cookie so you count each user only once. You can set the cookie to expire at a relative or absolute date depending on your thresholds. That's how all analytics scripts work. Search engine spiders can also be filtered by UA string or published IP lists. – aleemb Feb 9 at 21:00
show 3 more comments
vote up 1 vote down

I agree that one single IP address does not correspond to a single user but I think that is the safest way of maintaining one vote per person. I usually use cookies to keep track who has voted. Of course, this is a easy hack where you can just delete the cookies and then vote again. If the vote is just some random stuff then I don't really care. If the correct votes really matter for your application then use IP address.

link|flag
vote up 1 vote down

A combination of IP and useragent can give you a reasonable solution.

link|flag
vote up 4 vote down

You can't limit a single vote to one IP address. An IP Address does not equal a single user. An IP address represents one or more users.

link|flag
vote up 1 vote down

Have a registration that requires email confirmation of registration and make sure the email address is a unique column in the DB among your users. Then tie the vote to the email address. It won't completely prevent a sock puppet who has multiple email addresses but it will at least make it not worth the effort for most.

link|flag
Better to generate a unique number (GUID) for each user's one time vote... – Mitch Wheat Feb 7 at 1:38
vote up -1 vote down

If the poll isn't something "critical" (for valid research, or other) I would just log the IP. If you need the poll results for something serious, I would look into Asp.Net Membership Roles.

If you log the IP, you can simply write the IP to a text file related to that poll, and search the file for the IP everytime they try to vote. (Or the same place you store your vote count)

link|flag
vote up 2 vote down

IP addresses won't work for the millions of people who are working behind a proxy as well.

Cookies are a partial solution, but voting robots could just not send the cookie.

link|flag
vote up 3 vote down

If you have a registered users list, send them an email containing a unique link which is generated containing a guid (for example), record the GUID in a database and match on voting.

If you are talking about generally publicly accessible and secure, then IP address on its own is not sufficient (google electronic electoral voting for the many issues involved with secure public voting).

Have you thought about using one of the free voting services?

Condorcet Internet Voting Service

EDIT: would downvoters please leave a brief comment as to why. Thanks.

link|flag
vote up 8 vote down

You can only garuantee that each user has one vote if you can authenticate the user. So you'll need an authentication mechanism, that will allow you to prevent the user from registering multiple accounts.

I can only see this work in an environment where the user has invested something into his account, like a subscriber for an online newspaper or a reputation system as on StackOverflow.

link|flag
This is not a practical solution. It has no application outside of closed communities. The registration process will only hinder the votes which makes this approach counter-productive. – aleemb Feb 9 at 21:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.