asp.net 3.5 请求变量?
我正在寻找一个按请求的地方来存储一些变量。我以为 HttpRequest 上有一个名称/值字典,但我没有看到(除了 Cookie 或 ServerVariables 之外)。这个应用程序是.Net 3.5。
谁能建议一个按请求存储区域?
- 谢谢
I'm looking for a Per Request place to store some variables. I thought there was a name/value dictionary on HttpRequest, but I don't see one (besides Cookies or ServerVariables). This App is .Net 3.5.
Can anyone suggest a Per Request storage area?
--Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HttpContext.Items
是每个请求的存储。如果您还没有对上下文的引用,则可以通过 System.Web.HttpContext.Current.Items 访问当前上下文。HttpContext.Items
is a per-request store. If you don't already have reference to the context, you can access the current context viaSystem.Web.HttpContext.Current.Items
.