如何从ASP.NET MVC的单独程序集中的Controller中读取Cookie

时间:2018-10-13 18:00:26

标签: asp.net-mvc controller

在我的项目中,Controllers是单独的程序集,Viwes是单独的程序,现在我需要将浏览器cookie读入Controller,而我正在使用中读取它 HttpContext.Current.Request.Cookies [“ _ sometext”]。Value,我正在收集null。 我认为这个becz控制器是单独组装的。

那么如何将浏览器cookie读入单独组件中的Controoler中?

1 个答案:

答案 0 :(得分:0)

您可以使用以下代码从控制器访问Cookie。

Request.Cookies["your_cookie_name"]