Ask a Question related to ASP Database, Design and Development.
-
bateman #1
Eliminating dupe votes
Wonder if this is possible and if so anyone could give me a bit of a hand. I
am writing a voting system which uses cookies to prevent multiple votes,
however we all know that if someone wants to cheat the system they can quite
easily.
Because of the number of votes every night at 1am an asp page is run that
calculates the average vote for each widget and stores it in the database.
Inside this page I was thinking I could also first run a statement that
looks at the vote, selects all the votes that have both the widget id and
also the same ip address and are within a time period of each other, say 2
hours. I wouldn't want to delete them over all time as for example AOL users
would share the same IP.
Votes that are duped within this time scale would have a 0 in the fld_allow
column and can be disregarded when calculating the average.
Currently the table has fld_vote_uid (Vote UID), fld_value (int 0-10),
fld_date (auto added sql small date/time), fld_ip (users ip address),
fld_allow (auto set to 1)
Is this possible?
Many thanks
bateman Guest
-
Customizing Dreamweaver for a Custom XML format (Dupe)
Note: This is a duplicate message previously posted in another forum. It should be in the other forum if that forum is "(Dreamweaver Application)... -
dupe times in Time::HiRes
Monks, mongers and perlites, I have been attempting to use it to provide 20 digit time date stamp which includes 6 digits for microseconds. In... -
dupe messages from -newbies
Sorry OT, but I believe I can see the problem with messages being duped back from -newbies (even when they're not being posted to there!) that was... -
eliminating red eye
I downloaded my pictures to iphoto and eliminated the "red eye" in some of the pictures. When I open them in photoshop the red eye is still present.... -
Dupe Prevent on Form Submit
I have an html form, that has fields and when the submit button is pressed, the information is transferred to a php file. Which then inserts the... -
Jeff Cochran #2
Re: Eliminating dupe votes
On Sat, 3 Jan 2004 13:19:21 -0000, "bateman"
<bateman_ap@nospam.hotmail.com> wrote:
Well, yes it is. Take a look at other ASP voting scripts and you'll>Wonder if this is possible and if so anyone could give me a bit of a hand. I
>am writing a voting system which uses cookies to prevent multiple votes,
>however we all know that if someone wants to cheat the system they can quite
>easily.
>
>Because of the number of votes every night at 1am an asp page is run that
>calculates the average vote for each widget and stores it in the database.
>Inside this page I was thinking I could also first run a statement that
>looks at the vote, selects all the votes that have both the widget id and
>also the same ip address and are within a time period of each other, say 2
>hours. I wouldn't want to delete them over all time as for example AOL users
>would share the same IP.
>
>Votes that are duped within this time scale would have a 0 in the fld_allow
>column and can be disregarded when calculating the average.
>
>Currently the table has fld_vote_uid (Vote UID), fld_value (int 0-10),
>fld_date (auto added sql small date/time), fld_ip (users ip address),
>fld_allow (auto set to 1)
>
>Is this possible?
find multiple methods of doing this, though all have problems. For
example, what about proxy users that all show the same IP?
Jeff
Jeff Cochran Guest



Reply With Quote

