The required anti-forgery form field "__RequestVerificationToken" is not present.

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 years ago
sohel wrote:
After upgrade one of my plugin from 3.4 to 3.7 I have also face this error. Can anybody solve this issue? If so please share.

Add anti-forgery token with your post data

or try with like bellow


[HttpPost]
        [AdminAntiForgery(true)]
        public ActionResult ActionName(FormCollection form)
{
//
}



Thanks Mr. Sohel it is working.
6 years ago
I find solution by removing [AntiForgryToken] tag, from GetEstimateShipping Action. The controller name is ShoppingCartController .


  Controller/Action
- ShoppingCartController/GetEstimateShipping
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.