gpt4 book ai didi

asp.net-mvc - 所需的防伪 cookie "__RequestVerificationToken"不存在。

转载 作者:行者123 更新时间:2023-12-01 21:56:20 25 4
gpt4 key购买 nike

所需的防伪 cookie“__RequestVerificationToken”不存在。

我也在cshtml和 Controller 中添加了

 using (Html.BeginForm())
{
@Html.AntiForgeryToken()

//some code

}

[HttpGet]
[ValidateAntiForgeryToken]
public ActionResult Index()
{
using (var db = new SampleEntities())
{
return View(db.Rfps.ToList());
}



}

最佳答案

就我而言,我的 web.config 中有以下内容:

<httpCookies requireSSL="true" />

但是我的项目设置为不使用 SSL。注释掉该行或将项目设置为始终使用 SSL 解决了这个问题。

关于asp.net-mvc - 所需的防伪 cookie "__RequestVerificationToken"不存在。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26759102/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com