This is not language specific. What are the best methods to limit how many times a person may submit a web form, not knowing any info about that person. Example: Voting for the all star game online, only allowed 1 per 24 hour cycle. Something where you don't have to "log in". My thoughts were:
- Use Captcha to keep bots at bay
- Drop a cookie that expires in 24 hours
- Check IP address if no cookie present (How many people are going to get banned because of NAT using this technique)
- Anything I'm missing?