在 C# 中的静态函数中访问服务器变量时出现问题

发布于 2024-09-24 07:05:23 字数 52 浏览 3 评论 0原文

我无法访问静态函数中的服务器/响应变量。我可以在静态函数中访问它们还是应该包含一些名称空间

Im unable to access server/response variable in my static function. Can i access them in static function or should i include some namespaces

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

握住我的手 2024-10-01 07:05:23

我很难理解你的问题,但你是否可能正在寻找 HttpContext.Current

var context = HttpContext.Current;
// now you can use context.Request, context.Response, context.Server, etc.

I'm having a really hard time understanding your question, but is it possible that you are looking for HttpContext.Current?

var context = HttpContext.Current;
// now you can use context.Request, context.Response, context.Server, etc.
爱的故事 2024-10-01 07:05:23

System.Web.HttpContext.Current 对象包括当前的 ServerResponseRequest 等实例。

System.Web.HttpContext.Current object includes current Server, Response, Request etc instances.

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