检索存储的 cookie 时出现问题
我想知道我们是否可以访问 App_Code 文件夹中的 HttpContext 类。我这么问是因为我的 App_Code 文件夹中有一个 CommonMethods.cs 类。
我编写了一个方法来检查客户端计算机上是否存在 cookie,但它不返回 cookie。
尽管当我在 ASPX.cs 页面上编写相同的代码时,我得到了 cookie!
有人可以向我澄清发生了什么事吗?
谢谢
I wanted to know if we can access the HttpContext class in the App_Code folder. I am asking so because i have a CommonMethods.cs class inside my App_Code folder.
I have written a method that checks if a cookie exists on the client machine or not, but it does not return the cookie.
Although when i write the same code on the ASPX.cs page i get the cookie!!
can anybody clarify me as in whats going on??
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HttpContext 是一个静态类,应该在任何 ASP.NET 页面中可用。
要在自定义类中访问它,您必须使用 System.Web.HttpContext 中的完全限定名称,或者包含 using 语句。如果它位于自定义 DLL 中,请确保引用该程序集。
HttpContext is a Static class that should be available in any ASP.NET page.
To access it in a custom class you have to use the fully qualified name as in System.Web.HttpContext, or include a using statement. If it's in a custom DLL, make sure to reference the assembly.