On my MVC3 site, I have a page that contains several links. These links all link back to a route on my site, with different ID values and are structured as such:
ie: www.mysite.com/links/33351/3
I'd like to take advantage of the MVC3's antiforgerytoken mechanism so that I can ensure that all requests to www.mysite.com/links/33351/3
from the link index page.
I'm familiar with how to add the token to a form, however these are all stand-alone links.
How can I accomplish this?