检索存储的 cookie 时出现问题

发布于 2024-08-31 12:50:47 字数 230 浏览 7 评论 0原文

我想知道我们是否可以访问 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拿命拼未来 2024-09-07 12:50:47

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文