The use case is a user submitted form. I would like to redirect for the usability aspects of it, while also either displaying some feedback confirmation ('update was successful!') or error feedback ('you suck, go home!').
This data only needs to persist across a single redirect for a specific user (using Membership API).
I would prefer not to set up DB tables for this, and I don't like the idea of using Session cache for this either. HttpContext won't work, but I have considered using Cookies. I would have to be careful to stay under the 4kb limit (use keys+generic responses), but I thought I would see if there were other approaches I'm not considering.
