Reputation: 7258
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?
Upvotes: 6
Views: 2873
Reputation: 29186
You can use HttpContext.Items. Here's an example which might help you.
Upvotes: 8