I want to pass a few variables to another page. Currently I'm using response.redirect and passing the variables in the url. I'm not really interested in using Session Variables. Is there a way to pass hidden variables in .NET to a completely different form?
|
feedback
|
|
(You can also use Server.Transfer() and not loose the Request.Form data.) | |||
|
feedback
|
|
You can use
server.transfer will transfer all variable of current page to another transfered page. | ||||
|
feedback
|
|
There are basically three ways of passing data to the next page:
There is a slight difference between the methods that applies when the user has more than one window open showing pages from your site. In the first two methods each window has it's own set of data, but using the third method means that all windows uses the same data. | |||
feedback
|
|
You could try cookies, but you can still see what those are if you look and its not very reliable. I would go with session variables, like in Syed's example. | |||
|
feedback
|