I am trying to handle multiple form submissions by writing an ActionFilter. I am new to the domain of ActionFilters and dont know where to start any help will be much appreciated.
I have looked at this question but couldnt get a starting point
I am trying to handle multiple form submissions by writing an ActionFilter. I am
Share
I would use antiforgery token for this. You should have it generated already (if you dont want to be vulnerable to CSRF attacks), and it is unique for every generated form.. so you can create an filter which will do basically this :