ASP .NET linq无法从View访问会话

时间:2018-10-12 02:08:15

标签: html linq view

我似乎可以从cshtml文件中的会话中正确获取值。

我有所有适当的using语句:

startup.cs包含:

services.AddSession();
 app.UseSession();

控制器包含:

using Microsoft.AspNetCore.Http;

在会话中设置值没有错误:

这是我给我老师打电话的电话,对我不起作用:

@HttpContext.Session.GetString("test");

网页返回:

The name 'HttpContext' does not exist in the current context

我在cshtml中的引用存在问题。我不知道自己是否在错误的位置,但似乎无法在网上找到任何内容。

0 个答案:

没有答案