我正在尝试缓解MVC应用程序的CSRF问题,但在cshtml的以下代码中添加防伪令牌时遇到了问题。尝试过搜索,但未找到具体解决方案。
非常感谢您的帮助。
@Ajax.ActionLink(
"Delete","DeleteStudent","RqstProcessor",
new
{
id = current.key
},
new AjaxOptions
{
AllowCache = false,
HttpMethod = "POST",
UpdateTargetId = "StudentList",
InsertionMode = InsertionMode.Replace,
},
new
{
@class = "ignoreClick"
}
)
</td>