Html.AntiForgeryToken() still required?
The form tag helper will automatically add the anti forgery token. (Unless you use it as a standard html form element, manually adding an action attribute). Check the source code of the form tag helper, you will see the following at the end of the Process method. if (Antiforgery ?? antiforgeryDefault) { var antiforgeryTag = … Read more