从 ASP .NET MVC 3 _Layout View 访问 cookie
我的布局使用默认的 _Layout.cshtml。
现在,我想访问 Request 对象,这样我就可以读取 Cookies 集合,这样我就可以查看用户是否已登录。由于 _Layout 视图没有控制器,我怎样才能实现这一点?我考虑过为 _Layout 视图创建一个模型,但该模型也无法访问 Request。有什么想法吗?
I'm using a default _Layout.cshtml for my layout.
Now, I would like to access the Request object, so I could read the Cookies collection, so I could see if user is logged in. How can I achieve that, since the _Layout view doesn't have a Controller? I thought about creating a model for the _Layout view, but the model can't access Request as well. Any thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 @HttpContext.Current.Request
Use
@HttpContext.Current.Request