会话状态变量是否在 MVC Net Core 中消失了?什么是替换语法?
Did session state variables disappear in MVC Net Core? What is replacement syntax?
会话状态变量在 MVC Net Core 中消失了吗?我收到错误 "The Name Session does not exist in current context." 替换语法是什么?
Session["testitem"] = "test"
这会是新的替代品吗?
HttpContext.Session.SetString("testitem", "test");
会话状态变量语法已更改,
InDieTasten :
"Yes, that's the way the documentation also suggests. I recommend taking a look at all sections of that document, as there are some common pitfalls you probably want to avoid."
会话状态变量在 MVC Net Core 中消失了吗?我收到错误 "The Name Session does not exist in current context." 替换语法是什么?
Session["testitem"] = "test"
这会是新的替代品吗?
HttpContext.Session.SetString("testitem", "test");
会话状态变量语法已更改,
InDieTasten :
"Yes, that's the way the documentation also suggests. I recommend taking a look at all sections of that document, as there are some common pitfalls you probably want to avoid."