在 asp.net 中通过请求生命周期节省价值
有没有办法在服务器端的 asp.net 中存储仅在当前请求期间有效的值。您可以在会话中设置值,也可以在缓存中设置值,但只能从请求中读取值。有没有办法写入请求或者有其他方法可以做到这一点?
Is there a way to store a value that only is valid during the current request in asp.net on the server side. You have the Session where you can set values, you have the Cache where you can set values but you can only read values from the Request. Is there a way to write to the Request or is there other methods to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 HttpContext.Items。 这是一个示例这可能对你有帮助。
You can use HttpContext.Items. Here's an example which might help you.