While working In MVC 4 application with Entity Framework I got below Error.
It’ simply means:
You have [ValidateAntiForgeryToken] attribute before your action. You also should add @Html.AntiForgeryToken() in your form.
Mean if your Action method like below:
Then your view should be like below:
Now Enjoy your programming.