I have some functionality in the code behind, which after executing needs to forward the request to another page. I want to pass along data like you would by setting a request attribute in Java (i.e. – I don’t want it in the query string of the redirected response). Is this possible with ASP.NET (c#)?
I have some functionality in the code behind, which after executing needs to forward
Share
You can use
Server.Transferif you want to forward the request and keep all of the Request variables, or you can use Session.