由于我的疏忽(对于 AppState 和 Session 变量仍然是新手),我必须将我的所有 AppStates 更改为 Session 变量。WebMatrix 的替换使该部分变得容易,但是我现在在下面两行代码的第一行中遇到此错误:
Session["gActionMessage"] = "";
Session["gActionMessageDisplayed"] = "not";
错误:
Compiler Error Message: CS0103: The name 'Session' does not exist in the current context
如果重要,这些代码行在我的 _AppStart.cshtml 文件中。
有什么建议么?我有语法错误吗?