I’d like to do this :
- Simple request to the server;
- Put a variable that will be visible ONLY to the next request;
- Make a redirect (Response.Redirect, without any querystring);
- Well, the page that I’ll see is called by the previous “request” : now I’ll access to the variable stored at point (2). The variable now will be destroyed;
- Any other request can’t find that variable, until I call the same page of point (1);
is there any mechanism to doing that? without having a querystring system… I know there are many scope in .NET…
Yes, it can be done.