在 C# 中的静态函数中访问服务器变量时出现问题
我无法访问静态函数中的服务器/响应变量。我可以在静态函数中访问它们还是应该包含一些名称空间
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我很难理解你的问题,但你是否可能正在寻找
HttpContext.Current
?I'm having a really hard time understanding your question, but is it possible that you are looking for
HttpContext.Current
?System.Web.HttpContext.Current
对象包括当前的Server
、Response
、Request
等实例。System.Web.HttpContext.Current
object includes currentServer
,Response
,Request
etc instances.