I'm trying to build a website that enables users to vote for things. The website works, but a user can vote multiple times. How can I prevent that?
I read online that I can use cookies. But I don't know how to implement them in my ASP.NET MVC 5 project.
Can you tell me how to use cookies for preventing multiple voting in ASP.NET MVC 5?
A small code snippet for starting would be great.